2018-02-10 01:00:55 +01:00
|
|
|
# Using multistage build:
|
|
|
|
# https://docs.docker.com/develop/develop-images/multistage-build/
|
|
|
|
# https://whitfin.io/speeding-up-rust-docker-builds/
|
2018-04-18 13:44:28 +02:00
|
|
|
####################### VAULT BUILD IMAGE #######################
|
2018-12-13 18:19:26 +01:00
|
|
|
FROM alpine as vault
|
2018-04-18 13:44:28 +02:00
|
|
|
|
2019-01-24 14:42:26 +01:00
|
|
|
ENV VAULT_VERSION "v2.8.0d"
|
2018-07-27 11:01:33 +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-04-18 13:44:28 +02:00
|
|
|
|
|
|
|
RUN apk add --update-cache --upgrade \
|
|
|
|
curl \
|
2018-07-21 17:27:00 +02:00
|
|
|
tar
|
2018-04-18 13:44:28 +02:00
|
|
|
|
2018-12-13 18:30:01 +01:00
|
|
|
RUN mkdir /web-vault
|
|
|
|
WORKDIR /web-vault
|
2018-04-18 13:44:28 +02:00
|
|
|
|
2018-12-13 18:19:26 +01:00
|
|
|
RUN curl -L $URL | tar xz
|
|
|
|
RUN ls
|
2018-04-18 13:44:28 +02:00
|
|
|
|
2018-02-10 01:00:55 +01:00
|
|
|
########################## BUILD IMAGE ##########################
|
|
|
|
# We need to use the Rust build image, because
|
|
|
|
# we need the Rust compiler and Cargo tooling
|
2018-06-13 00:48:18 +02:00
|
|
|
FROM rust as build
|
2018-02-10 01:00:55 +01:00
|
|
|
|
2018-05-07 21:33:54 +02:00
|
|
|
# Using bundled SQLite, no need to install it
|
|
|
|
# RUN apt-get update && apt-get install -y\
|
|
|
|
# sqlite3\
|
|
|
|
# --no-install-recommends\
|
|
|
|
# && rm -rf /var/lib/apt/lists/*
|
2018-02-10 01:00:55 +01:00
|
|
|
|
|
|
|
# Creates a dummy project used to grab dependencies
|
|
|
|
RUN USER=root cargo new --bin app
|
|
|
|
WORKDIR /app
|
|
|
|
|
2018-12-31 14:07:12 +01:00
|
|
|
# Copies over *only* your manifests and build files
|
2018-02-10 01:00:55 +01:00
|
|
|
COPY ./Cargo.* ./
|
2018-06-13 00:48:18 +02:00
|
|
|
COPY ./rust-toolchain ./rust-toolchain
|
2018-12-31 14:07:12 +01:00
|
|
|
COPY ./build.rs ./build.rs
|
2018-02-10 01:00:55 +01:00
|
|
|
|
|
|
|
# Builds your dependencies and removes the
|
|
|
|
# dummy project, except the target folder
|
2018-02-17 01:13:02 +01:00
|
|
|
# This folder contains the compiled dependencies
|
2018-08-28 12:54:57 +02:00
|
|
|
RUN cargo build --release
|
2018-02-10 01:00:55 +01:00
|
|
|
RUN find . -not -path "./target*" -delete
|
|
|
|
|
|
|
|
# Copies the complete project
|
|
|
|
# To avoid copying unneeded files, use .dockerignore
|
|
|
|
COPY . .
|
|
|
|
|
2018-12-04 13:55:37 +01:00
|
|
|
# Make sure that we actually build the project
|
|
|
|
RUN touch src/main.rs
|
|
|
|
|
2018-02-10 01:00:55 +01:00
|
|
|
# Builds again, this time it'll just be
|
|
|
|
# your actual source files being built
|
2018-08-28 12:54:57 +02:00
|
|
|
RUN cargo build --release
|
2018-02-10 01:00:55 +01:00
|
|
|
|
|
|
|
######################## RUNTIME IMAGE ########################
|
|
|
|
# Create a new stage with a minimal image
|
|
|
|
# because we already have a binary built
|
|
|
|
FROM debian:stretch-slim
|
|
|
|
|
2018-07-12 14:25:15 +02:00
|
|
|
ENV ROCKET_ENV "staging"
|
2018-11-01 00:07:03 +01:00
|
|
|
ENV ROCKET_PORT=80
|
2018-07-18 11:40:46 +02:00
|
|
|
ENV ROCKET_WORKERS=10
|
2018-07-12 14:25:15 +02:00
|
|
|
|
2018-02-10 01:00:55 +01:00
|
|
|
# Install needed libraries
|
2018-02-18 19:14:25 +01:00
|
|
|
RUN apt-get update && apt-get install -y\
|
|
|
|
openssl\
|
2018-07-01 17:40:02 +02:00
|
|
|
ca-certificates\
|
2018-02-18 19:14:25 +01:00
|
|
|
--no-install-recommends\
|
|
|
|
&& rm -rf /var/lib/apt/lists/*
|
2018-02-10 01:00:55 +01:00
|
|
|
|
|
|
|
RUN mkdir /data
|
|
|
|
VOLUME /data
|
|
|
|
EXPOSE 80
|
2018-09-04 17:22:17 +02:00
|
|
|
EXPOSE 3012
|
2018-02-10 01:00:55 +01:00
|
|
|
|
2019-01-07 01:36:01 +01:00
|
|
|
# Copies the files from the context (Rocket.toml file and web-vault)
|
2018-02-10 01:00:55 +01:00
|
|
|
# and the binary from the "build" stage to the current stage
|
2018-06-30 01:51:53 +02:00
|
|
|
COPY Rocket.toml .
|
2018-04-18 13:44:28 +02:00
|
|
|
COPY --from=vault /web-vault ./web-vault
|
2018-02-10 01:00:55 +01:00
|
|
|
COPY --from=build app/target/release/bitwarden_rs .
|
|
|
|
|
|
|
|
# Configures the startup!
|
2018-07-11 20:06:55 +02:00
|
|
|
CMD ./bitwarden_rs
|