2020-01-01 15:47:18 +01:00
|
|
|
# This file was generated using a Jinja2 template.
|
2021-01-25 02:26:25 +01:00
|
|
|
# Please make your changes in `Dockerfile.j2` and then `make` the individual Dockerfiles.
|
2020-01-01 15:47:18 +01:00
|
|
|
|
2019-12-28 22:52:01 +01:00
|
|
|
# Using multistage build:
|
2019-06-24 10:56:26 +02:00
|
|
|
# https://docs.docker.com/develop/develop-images/multistage-build/
|
|
|
|
# https://whitfin.io/speeding-up-rust-docker-builds/
|
|
|
|
####################### VAULT BUILD IMAGE #######################
|
2021-01-25 02:26:25 +01:00
|
|
|
# The web-vault digest specifies a particular web-vault build on Docker Hub.
|
|
|
|
# Using the digest instead of the tag name provides better security,
|
|
|
|
# as the digest of an image is immutable, whereas a tag name can later
|
|
|
|
# be changed to point to a malicious image.
|
|
|
|
#
|
|
|
|
# To verify the current digest for a given tag name:
|
|
|
|
# - From https://hub.docker.com/r/bitwardenrs/web-vault/tags,
|
|
|
|
# click the tag name to view the digest of the image it currently points to.
|
|
|
|
# - From the command line:
|
2021-03-14 23:36:49 +01:00
|
|
|
# $ docker pull bitwardenrs/web-vault:v2.19.0
|
|
|
|
# $ docker image inspect --format "{{.RepoDigests}}" bitwardenrs/web-vault:v2.19.0
|
|
|
|
# [bitwardenrs/web-vault@sha256:8747cfaa2c6d87d1749e119dd884697e8099389aa9aca30a4d73d4ff796fe0e4]
|
2021-01-25 02:26:25 +01:00
|
|
|
#
|
|
|
|
# - Conversely, to get the tag name from the digest:
|
2021-03-14 23:36:49 +01:00
|
|
|
# $ docker image inspect --format "{{.RepoTags}}" bitwardenrs/web-vault@sha256:8747cfaa2c6d87d1749e119dd884697e8099389aa9aca30a4d73d4ff796fe0e4
|
|
|
|
# [bitwardenrs/web-vault:v2.19.0]
|
2020-03-26 04:13:36 +01:00
|
|
|
#
|
2021-03-14 23:36:49 +01:00
|
|
|
FROM bitwardenrs/web-vault@sha256:8747cfaa2c6d87d1749e119dd884697e8099389aa9aca30a4d73d4ff796fe0e4 as vault
|
2019-06-24 10:56:26 +02:00
|
|
|
|
|
|
|
########################## BUILD IMAGE ##########################
|
2021-02-24 20:25:22 +01:00
|
|
|
FROM rust:1.50 as build
|
2019-06-24 10:56:26 +02:00
|
|
|
|
2020-10-06 18:04:53 +02:00
|
|
|
# Debian-based builds support multidb
|
2020-08-19 00:02:14 +02:00
|
|
|
ARG DB=sqlite,mysql,postgresql
|
2019-06-24 10:56:26 +02:00
|
|
|
|
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
|
2019-06-24 10:56:26 +02:00
|
|
|
|
2020-08-19 00:02:14 +02:00
|
|
|
# Install DB packages
|
2019-06-24 10:56:26 +02:00
|
|
|
RUN apt-get update && apt-get install -y \
|
2019-07-06 08:16:05 +02:00
|
|
|
--no-install-recommends \
|
2019-07-06 08:36:18 +02:00
|
|
|
libmariadb-dev \
|
2020-08-19 00:02:14 +02:00
|
|
|
libpq-dev \
|
2019-07-06 08:16:05 +02:00
|
|
|
&& rm -rf /var/lib/apt/lists/*
|
2019-06-24 10:56:26 +02:00
|
|
|
|
|
|
|
# Creates a dummy project used to grab dependencies
|
2019-12-31 15:31:01 +01:00
|
|
|
RUN USER=root cargo new --bin /app
|
2019-06-24 10:56:26 +02:00
|
|
|
WORKDIR /app
|
|
|
|
|
|
|
|
# Copies over *only* your manifests and build files
|
|
|
|
COPY ./Cargo.* ./
|
|
|
|
COPY ./rust-toolchain ./rust-toolchain
|
|
|
|
COPY ./build.rs ./build.rs
|
|
|
|
|
2020-10-03 20:14:17 +02:00
|
|
|
|
2019-06-24 10:56:26 +02:00
|
|
|
# Builds your dependencies and removes the
|
|
|
|
# dummy project, except the target folder
|
|
|
|
# This folder contains the compiled dependencies
|
|
|
|
RUN cargo build --features ${DB} --release
|
|
|
|
RUN find . -not -path "./target*" -delete
|
|
|
|
|
|
|
|
# Copies the complete project
|
|
|
|
# To avoid copying unneeded files, use .dockerignore
|
|
|
|
COPY . .
|
|
|
|
|
|
|
|
# Make sure that we actually build the project
|
|
|
|
RUN touch src/main.rs
|
|
|
|
|
|
|
|
# Builds again, this time it'll just be
|
|
|
|
# your actual source files being built
|
|
|
|
RUN cargo build --features ${DB} --release
|
|
|
|
|
|
|
|
######################## 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
|
2019-06-24 10:56:26 +02:00
|
|
|
|
|
|
|
ENV ROCKET_ENV "staging"
|
|
|
|
ENV ROCKET_PORT=80
|
|
|
|
ENV ROCKET_WORKERS=10
|
|
|
|
|
|
|
|
# Install needed libraries
|
2019-07-06 08:16:05 +02:00
|
|
|
RUN apt-get update && apt-get install -y \
|
2019-07-06 08:36:18 +02:00
|
|
|
--no-install-recommends \
|
2019-07-06 08:16:05 +02:00
|
|
|
openssl \
|
|
|
|
ca-certificates \
|
2019-09-06 10:34:21 +02:00
|
|
|
curl \
|
2021-01-22 08:18:38 +01:00
|
|
|
dumb-init \
|
2020-08-19 00:02:14 +02:00
|
|
|
sqlite3 \
|
2020-10-06 18:04:53 +02:00
|
|
|
libmariadb-dev-compat \
|
2020-08-19 00:02:14 +02:00
|
|
|
libpq5 \
|
2019-07-06 08:16:05 +02:00
|
|
|
&& rm -rf /var/lib/apt/lists/*
|
2019-06-24 10:56:26 +02:00
|
|
|
|
|
|
|
RUN mkdir /data
|
|
|
|
VOLUME /data
|
|
|
|
EXPOSE 80
|
|
|
|
EXPOSE 3012
|
|
|
|
|
|
|
|
# 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
|
2020-10-11 17:26:49 +02:00
|
|
|
COPY --from=build /app/target/release/bitwarden_rs .
|
2019-06-24 10:56:26 +02:00
|
|
|
|
2020-03-26 04:13:36 +01:00
|
|
|
COPY docker/healthcheck.sh /healthcheck.sh
|
2020-07-06 00:26:20 +02:00
|
|
|
COPY docker/start.sh /start.sh
|
2019-08-27 11:23:55 +02:00
|
|
|
|
2020-03-26 04:13:36 +01:00
|
|
|
HEALTHCHECK --interval=60s --timeout=10s CMD ["/healthcheck.sh"]
|
2019-08-27 11:23:55 +02:00
|
|
|
|
2019-06-24 10:56:26 +02:00
|
|
|
# Configures the startup!
|
2019-11-13 21:45:26 +01:00
|
|
|
WORKDIR /
|
2021-01-22 08:18:38 +01:00
|
|
|
ENTRYPOINT ["/usr/bin/dumb-init", "--"]
|
2020-07-06 00:26:20 +02:00
|
|
|
CMD ["/start.sh"]
|