2019-02-25 12:17:22 +00:00
|
|
|
# Using multistage build:
|
|
|
|
# https://docs.docker.com/develop/develop-images/multistage-build/
|
|
|
|
# https://whitfin.io/speeding-up-rust-docker-builds/
|
|
|
|
####################### VAULT BUILD IMAGE #######################
|
2019-07-06 06:36:18 +00:00
|
|
|
FROM alpine:3.10 as vault
|
2019-02-25 12:17:22 +00:00
|
|
|
|
2019-07-30 17:50:35 +00:00
|
|
|
ENV VAULT_VERSION "v2.11.0"
|
2019-02-25 12:17:22 +00:00
|
|
|
|
|
|
|
ENV URL "https://github.com/dani-garcia/bw_web_builds/releases/download/$VAULT_VERSION/bw_web_$VAULT_VERSION.tar.gz"
|
|
|
|
|
2019-07-06 06:36:18 +00:00
|
|
|
RUN apk add --no-cache --upgrade \
|
2019-02-25 12:17:22 +00:00
|
|
|
curl \
|
|
|
|
tar
|
|
|
|
|
|
|
|
RUN mkdir /web-vault
|
|
|
|
WORKDIR /web-vault
|
|
|
|
|
2019-07-06 06:36:18 +00:00
|
|
|
SHELL ["/bin/ash", "-eo", "pipefail", "-c"]
|
|
|
|
|
2019-02-25 12:17:22 +00:00
|
|
|
RUN curl -L $URL | tar xz
|
|
|
|
RUN ls
|
|
|
|
|
|
|
|
########################## BUILD IMAGE ##########################
|
|
|
|
# We need to use the Rust build image, because
|
|
|
|
# we need the Rust compiler and Cargo tooling
|
2019-07-06 06:36:18 +00:00
|
|
|
FROM rust:1.36 as build
|
2019-02-25 12:17:22 +00:00
|
|
|
|
2019-05-28 09:56:49 +00:00
|
|
|
# set sqlite as default for DB ARG for backward comaptibility
|
|
|
|
ARG DB=sqlite
|
|
|
|
|
2019-02-25 12:17:22 +00:00
|
|
|
RUN apt-get update \
|
|
|
|
&& apt-get install -y \
|
2019-07-06 06:36:18 +00:00
|
|
|
--no-install-recommends \
|
2019-02-25 12:17:22 +00:00
|
|
|
gcc-arm-linux-gnueabi \
|
|
|
|
&& mkdir -p ~/.cargo \
|
|
|
|
&& echo '[target.arm-unknown-linux-gnueabi]' >> ~/.cargo/config \
|
|
|
|
&& echo 'linker = "arm-linux-gnueabi-gcc"' >> ~/.cargo/config
|
|
|
|
|
|
|
|
ENV CARGO_HOME "/root/.cargo"
|
|
|
|
ENV USER "root"
|
|
|
|
|
|
|
|
WORKDIR /app
|
|
|
|
|
|
|
|
# Prepare openssl armel libs
|
|
|
|
RUN sed 's/^deb/deb-src/' /etc/apt/sources.list > \
|
|
|
|
/etc/apt/sources.list.d/deb-src.list \
|
|
|
|
&& dpkg --add-architecture armel \
|
|
|
|
&& apt-get update \
|
|
|
|
&& apt-get install -y \
|
2019-07-06 06:36:18 +00:00
|
|
|
--no-install-recommends \
|
2019-02-25 12:17:22 +00:00
|
|
|
libssl-dev:armel \
|
2019-05-28 09:56:49 +00:00
|
|
|
libc6-dev:armel \
|
|
|
|
libmariadb-dev:armel
|
2019-02-25 12:17:22 +00:00
|
|
|
|
|
|
|
ENV CC_arm_unknown_linux_gnueabi="/usr/bin/arm-linux-gnueabi-gcc"
|
|
|
|
ENV CROSS_COMPILE="1"
|
|
|
|
ENV OPENSSL_INCLUDE_DIR="/usr/include/arm-linux-gnueabi"
|
|
|
|
ENV OPENSSL_LIB_DIR="/usr/lib/arm-linux-gnueabi"
|
|
|
|
|
|
|
|
# Copies the complete project
|
|
|
|
# To avoid copying unneeded files, use .dockerignore
|
|
|
|
COPY . .
|
|
|
|
|
|
|
|
# Build
|
|
|
|
RUN rustup target add arm-unknown-linux-gnueabi
|
2019-05-28 09:56:49 +00:00
|
|
|
RUN cargo build --features ${DB} --release --target=arm-unknown-linux-gnueabi -v
|
2019-02-25 12:17:22 +00:00
|
|
|
|
|
|
|
######################## RUNTIME IMAGE ########################
|
|
|
|
# Create a new stage with a minimal image
|
|
|
|
# because we already have a binary built
|
|
|
|
FROM balenalib/rpi-debian:stretch
|
|
|
|
|
|
|
|
ENV ROCKET_ENV "staging"
|
|
|
|
ENV ROCKET_PORT=80
|
|
|
|
ENV ROCKET_WORKERS=10
|
|
|
|
|
|
|
|
RUN [ "cross-build-start" ]
|
|
|
|
|
|
|
|
# Install needed libraries
|
2019-07-06 06:36:18 +00:00
|
|
|
RUN apt-get update && apt-get install -y \
|
|
|
|
--no-install-recommends \
|
|
|
|
openssl \
|
|
|
|
ca-certificates \
|
|
|
|
libmariadbclient-dev \
|
|
|
|
&& rm -rf /var/lib/apt/lists/*
|
2019-02-25 12:17:22 +00:00
|
|
|
|
|
|
|
RUN mkdir /data
|
|
|
|
|
|
|
|
RUN [ "cross-build-end" ]
|
|
|
|
|
|
|
|
VOLUME /data
|
|
|
|
EXPOSE 80
|
|
|
|
|
|
|
|
# Copies the files from the context (Rocket.toml file and web-vault)
|
|
|
|
# and the binary from the "build" stage to the current stage
|
|
|
|
COPY Rocket.toml .
|
|
|
|
COPY --from=vault /web-vault ./web-vault
|
|
|
|
COPY --from=build /app/target/arm-unknown-linux-gnueabi/release/bitwarden_rs .
|
|
|
|
|
|
|
|
# Configures the startup!
|
2019-07-06 06:36:18 +00:00
|
|
|
CMD ["./bitwarden_rs"]
|