2020-01-01 14:47:18 +00: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 21:52:01 +00:00
|
|
|
# Using multistage build:
|
2019-06-24 08:56:26 +00:00
|
|
|
# https://docs.docker.com/develop/develop-images/multistage-build/
|
|
|
|
# https://whitfin.io/speeding-up-rust-docker-builds/
|
|
|
|
####################### VAULT BUILD IMAGE #######################
|
|
|
|
|
2020-10-06 16:04:53 +00:00
|
|
|
# This hash is extracted from the docker web-vault builds and it's preferred over a simple tag because it's immutable.
|
2020-03-01 01:38:26 +00:00
|
|
|
# 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:
|
2020-10-06 16:04:53 +00:00
|
|
|
# docker pull bitwardenrs/web-vault:v2.16.1
|
2020-10-03 18:14:17 +00:00
|
|
|
# docker image inspect --format "{{.RepoDigests}}" bitwardenrs/web-vault:v2.16.1
|
2020-03-26 03:13:36 +00:00
|
|
|
#
|
2020-03-01 01:38:26 +00:00
|
|
|
# - To do the opposite, and get the tag from the hash, you can do:
|
2020-10-03 18:14:17 +00:00
|
|
|
# docker image inspect --format "{{.RepoTags}}" bitwardenrs/web-vault@sha256:e40228f94cead5e50af6575fb39850a002dad146dab6836e5da5663e6d214303
|
|
|
|
FROM bitwardenrs/web-vault@sha256:e40228f94cead5e50af6575fb39850a002dad146dab6836e5da5663e6d214303 as vault
|
2019-06-24 08:56:26 +00:00
|
|
|
|
|
|
|
########################## BUILD IMAGE ##########################
|
2020-10-03 18:14:17 +00:00
|
|
|
FROM rust:1.46 as build
|
2019-06-24 08:56:26 +00:00
|
|
|
|
2020-10-06 16:04:53 +00:00
|
|
|
# Debian-based builds support multidb
|
2020-08-18 22:02:14 +00:00
|
|
|
ARG DB=sqlite,mysql,postgresql
|
2019-06-24 08:56:26 +00:00
|
|
|
|
2019-12-31 15:20:04 +00:00
|
|
|
# Build time options to avoid dpkg warnings and help with reproducible builds.
|
2020-01-18 19:09:52 +00:00
|
|
|
ENV DEBIAN_FRONTEND=noninteractive LANG=C.UTF-8 TZ=UTC TERM=xterm-256color
|
2019-12-31 15:20:04 +00:00
|
|
|
|
2019-11-24 16:52:54 +00:00
|
|
|
# Don't download rust docs
|
|
|
|
RUN rustup set profile minimal
|
2019-06-24 08:56:26 +00:00
|
|
|
|
2020-08-18 22:02:14 +00:00
|
|
|
# Install DB packages
|
2019-06-24 08:56:26 +00:00
|
|
|
RUN apt-get update && apt-get install -y \
|
2019-07-06 06:16:05 +00:00
|
|
|
--no-install-recommends \
|
2019-07-06 06:36:18 +00:00
|
|
|
libmariadb-dev \
|
2020-08-18 22:02:14 +00:00
|
|
|
libpq-dev \
|
2019-07-06 06:16:05 +00:00
|
|
|
&& rm -rf /var/lib/apt/lists/*
|
2019-06-24 08:56:26 +00:00
|
|
|
|
|
|
|
# Creates a dummy project used to grab dependencies
|
2019-12-31 14:31:01 +00:00
|
|
|
RUN USER=root cargo new --bin /app
|
2019-06-24 08:56:26 +00: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 18:14:17 +00:00
|
|
|
|
2019-06-24 08:56:26 +00: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 18:37:17 +00:00
|
|
|
FROM debian:buster-slim
|
2019-06-24 08:56:26 +00:00
|
|
|
|
|
|
|
ENV ROCKET_ENV "staging"
|
|
|
|
ENV ROCKET_PORT=80
|
|
|
|
ENV ROCKET_WORKERS=10
|
|
|
|
|
|
|
|
# Install needed libraries
|
2019-07-06 06:16:05 +00:00
|
|
|
RUN apt-get update && apt-get install -y \
|
2019-07-06 06:36:18 +00:00
|
|
|
--no-install-recommends \
|
2019-07-06 06:16:05 +00:00
|
|
|
openssl \
|
|
|
|
ca-certificates \
|
2019-09-06 08:34:21 +00:00
|
|
|
curl \
|
2020-08-18 22:02:14 +00:00
|
|
|
sqlite3 \
|
2020-10-06 16:04:53 +00:00
|
|
|
libmariadb-dev-compat \
|
2020-08-18 22:02:14 +00:00
|
|
|
libpq5 \
|
2019-07-06 06:16:05 +00:00
|
|
|
&& rm -rf /var/lib/apt/lists/*
|
2019-06-24 08:56:26 +00: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
|
|
|
|
COPY --from=build app/target/release/bitwarden_rs .
|
|
|
|
|
2020-03-26 03:13:36 +00:00
|
|
|
COPY docker/healthcheck.sh /healthcheck.sh
|
2020-07-05 22:26:20 +00:00
|
|
|
COPY docker/start.sh /start.sh
|
2019-08-27 09:23:55 +00:00
|
|
|
|
2020-03-26 03:13:36 +00:00
|
|
|
HEALTHCHECK --interval=60s --timeout=10s CMD ["/healthcheck.sh"]
|
2019-08-27 09:23:55 +00:00
|
|
|
|
2019-06-24 08:56:26 +00:00
|
|
|
# Configures the startup!
|
2019-11-13 20:45:26 +00:00
|
|
|
WORKDIR /
|
2020-07-05 22:26:20 +00:00
|
|
|
CMD ["/start.sh"]
|
2020-10-03 18:14:17 +00:00
|
|
|
|