2020-01-01 15:47:18 +01:00
|
|
|
# This file was generated using a Jinja2 template.
|
|
|
|
# Please make your changes in `Dockerfile.j2` and then `make` the individual Dockerfile's.
|
|
|
|
|
2019-12-28 22:52:01 +01:00
|
|
|
# Using multistage build:
|
2018-02-10 01:00:55 +01:00
|
|
|
# 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 #######################
|
|
|
|
|
2020-03-01 02:38:26 +01:00
|
|
|
# This hash is extracted from the docker web-vault builds and it's prefered over a simple tag because it's immutable.
|
|
|
|
# It can be viewed in multiple ways:
|
|
|
|
# - From the https://hub.docker.com/repository/docker/bitwardenrs/web-vault/tags page, click the tag name and the digest should be there.
|
|
|
|
# - From the console, with the following commands:
|
|
|
|
# docker pull bitwardenrs/web-vault:v2.12.0e
|
|
|
|
# docker image inspect --format "{{.RepoDigests}}" bitwardenrs/web-vault:v2.12.0e
|
|
|
|
#
|
|
|
|
# - To do the opposite, and get the tag from the hash, you can do:
|
|
|
|
# docker image inspect --format "{{.RepoTags}}" bitwardenrs/web-vault@sha256:ce56b3f5e538351411785ac45e9b4b913259c3508b1323d62e8fa0f30717dd1c
|
|
|
|
FROM bitwardenrs/web-vault@sha256:ce56b3f5e538351411785ac45e9b4b913259c3508b1323d62e8fa0f30717dd1c as vault
|
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
|
2019-12-22 21:42:13 +01:00
|
|
|
FROM rust:1.40 as build
|
2018-02-10 01:00:55 +01:00
|
|
|
|
2019-12-28 22:52:01 +01:00
|
|
|
# set sqlite as default for DB ARG for backward compatibility
|
2019-05-26 23:02:41 +02:00
|
|
|
ARG DB=sqlite
|
|
|
|
|
2019-12-31 16:20:04 +01:00
|
|
|
# Build time options to avoid dpkg warnings and help with reproducible builds.
|
2020-01-18 20:09:52 +01:00
|
|
|
ENV DEBIAN_FRONTEND=noninteractive LANG=C.UTF-8 TZ=UTC TERM=xterm-256color
|
2019-12-31 16:20:04 +01:00
|
|
|
|
2019-11-24 17:52:54 +01:00
|
|
|
# Don't download rust docs
|
|
|
|
RUN rustup set profile minimal
|
2018-02-10 01:00:55 +01:00
|
|
|
|
|
|
|
# Creates a dummy project used to grab dependencies
|
2019-12-31 15:31:01 +01:00
|
|
|
RUN USER=root cargo new --bin /app
|
2018-02-10 01:00:55 +01:00
|
|
|
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
|
2019-05-26 23:02:41 +02:00
|
|
|
RUN cargo build --features ${DB} --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
|
2019-05-26 23:02:41 +02:00
|
|
|
RUN cargo build --features ${DB} --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
|
2019-10-24 20:37:17 +02:00
|
|
|
FROM debian:buster-slim
|
2018-02-10 01:00:55 +01:00
|
|
|
|
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
|
2019-07-06 08:36:18 +02:00
|
|
|
RUN apt-get update && apt-get install -y \
|
|
|
|
--no-install-recommends \
|
|
|
|
openssl \
|
|
|
|
ca-certificates \
|
2019-09-06 10:34:21 +02:00
|
|
|
curl \
|
2019-09-30 14:54:06 +02:00
|
|
|
sqlite3 \
|
2019-07-06 08:36:18 +02:00
|
|
|
&& 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 .
|
|
|
|
|
2019-08-27 11:23:55 +02:00
|
|
|
COPY docker/healthcheck.sh ./healthcheck.sh
|
|
|
|
|
2019-09-11 22:01:42 +02:00
|
|
|
HEALTHCHECK --interval=30s --timeout=3s CMD sh healthcheck.sh || exit 1
|
2019-08-27 11:23:55 +02:00
|
|
|
|
2018-02-10 01:00:55 +01:00
|
|
|
# Configures the startup!
|
2019-11-13 13:45:05 +01:00
|
|
|
WORKDIR /
|
|
|
|
CMD ["/bitwarden_rs"]
|