2018-08-30 11:38:38 +02:00
|
|
|
# Using multistage build:
|
|
|
|
# https://docs.docker.com/develop/develop-images/multistage-build/
|
|
|
|
# https://whitfin.io/speeding-up-rust-docker-builds/
|
|
|
|
####################### VAULT BUILD IMAGE #######################
|
2018-12-13 18:19:26 +01:00
|
|
|
FROM alpine as vault
|
2018-08-30 11:38:38 +02:00
|
|
|
|
2018-12-03 20:28:13 +01:00
|
|
|
ENV VAULT_VERSION "v2.6.1"
|
2018-08-30 11:38:38 +02:00
|
|
|
|
2018-12-13 18:19:26 +01:00
|
|
|
ENV URL "https://github.com/dani-garcia/bw_web_builds/releases/download/$VAULT_VERSION/bw_web_$VAULT_VERSION.tar.gz"
|
2018-08-30 11:38:38 +02:00
|
|
|
|
|
|
|
RUN apk add --update-cache --upgrade \
|
|
|
|
curl \
|
|
|
|
tar
|
|
|
|
|
2018-12-13 18:19:26 +01:00
|
|
|
RUN mkdir /web-build
|
2018-08-30 11:38:38 +02:00
|
|
|
WORKDIR /web-build
|
|
|
|
|
2018-12-13 18:19:26 +01:00
|
|
|
RUN curl -L $URL | tar xz
|
|
|
|
RUN ls
|
2018-08-30 11:38:38 +02:00
|
|
|
|
|
|
|
########################## BUILD IMAGE ##########################
|
|
|
|
# Musl build image for statically compiled binary
|
2018-12-01 14:34:47 +01:00
|
|
|
FROM clux/muslrust:nightly-2018-11-30 as build
|
2018-08-30 11:38:38 +02:00
|
|
|
|
2018-11-20 15:55:19 +01:00
|
|
|
ENV USER "root"
|
2018-08-30 11:38:38 +02:00
|
|
|
|
2018-11-20 15:55:19 +01:00
|
|
|
WORKDIR /app
|
2018-08-30 11:38:38 +02:00
|
|
|
|
|
|
|
# Copies the complete project
|
|
|
|
# To avoid copying unneeded files, use .dockerignore
|
|
|
|
COPY . .
|
|
|
|
|
2018-11-20 15:55:19 +01:00
|
|
|
# Build
|
2018-08-30 11:38:38 +02:00
|
|
|
RUN cargo build --release
|
|
|
|
|
|
|
|
######################## RUNTIME IMAGE ########################
|
|
|
|
# Create a new stage with a minimal image
|
|
|
|
# because we already have a binary built
|
|
|
|
FROM alpine:3.8
|
|
|
|
|
|
|
|
ENV ROCKET_ENV "staging"
|
2018-11-01 00:07:03 +01:00
|
|
|
ENV ROCKET_PORT=80
|
2018-08-30 11:38:38 +02:00
|
|
|
ENV ROCKET_WORKERS=10
|
|
|
|
ENV SSL_CERT_DIR=/etc/ssl/certs
|
|
|
|
|
|
|
|
# Install needed libraries
|
|
|
|
RUN apk add \
|
|
|
|
openssl\
|
|
|
|
ca-certificates \
|
|
|
|
&& rm /var/cache/apk/*
|
|
|
|
|
|
|
|
RUN mkdir /data
|
|
|
|
VOLUME /data
|
|
|
|
EXPOSE 80
|
2018-09-04 17:22:17 +02:00
|
|
|
EXPOSE 3012
|
2018-08-30 11:38:38 +02:00
|
|
|
|
|
|
|
# Copies the files from the context (env file and web-vault)
|
|
|
|
# and the binary from the "build" stage to the current stage
|
|
|
|
COPY .env .
|
|
|
|
COPY Rocket.toml .
|
|
|
|
COPY --from=vault /web-vault ./web-vault
|
2018-11-22 00:35:42 +01:00
|
|
|
COPY --from=build /app/target/x86_64-unknown-linux-musl/release/bitwarden_rs .
|
2018-08-30 11:38:38 +02:00
|
|
|
|
|
|
|
# Configures the startup!
|
|
|
|
CMD ./bitwarden_rs
|