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-09-12 22:12:22 +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:
|
2021-04-27 23:18:32 +02:00
|
|
|
# - From https://hub.docker.com/r/vaultwarden/web-vault/tags,
|
2021-01-25 02:26:25 +01:00
|
|
|
# click the tag name to view the digest of the image it currently points to.
|
|
|
|
# - From the command line:
|
2021-04-27 23:18:32 +02:00
|
|
|
# $ docker pull vaultwarden/web-vault:v2.19.0d
|
|
|
|
# $ docker image inspect --format "{{.RepoDigests}}" vaultwarden/web-vault:v2.19.0d
|
|
|
|
# [vaultwarden/web-vault@sha256:a7bd6bc4db33bd45f723c4b1ac90918b7f80204560683cfc8efd9efd03a9b233]
|
2021-01-25 02:26:25 +01:00
|
|
|
#
|
|
|
|
# - Conversely, to get the tag name from the digest:
|
2021-04-27 23:18:32 +02:00
|
|
|
# $ docker image inspect --format "{{.RepoTags}}" vaultwarden/web-vault@sha256:a7bd6bc4db33bd45f723c4b1ac90918b7f80204560683cfc8efd9efd03a9b233
|
|
|
|
# [vaultwarden/web-vault:v2.19.0d]
|
2020-03-26 04:13:36 +01:00
|
|
|
#
|
2021-04-27 23:18:32 +02:00
|
|
|
FROM vaultwarden/web-vault@sha256:a7bd6bc4db33bd45f723c4b1ac90918b7f80204560683cfc8efd9efd03a9b233 as vault
|
2019-09-12 22:12:22 +02:00
|
|
|
|
|
|
|
########################## BUILD IMAGE ##########################
|
2021-04-27 23:18:32 +02:00
|
|
|
FROM clux/muslrust:nightly-2021-04-14 as build
|
2019-09-12 22:12:22 +02:00
|
|
|
|
2020-12-04 13:38:42 +01:00
|
|
|
# Alpine-based AMD64 (musl) does not support mysql/mariadb during compile time.
|
|
|
|
ARG DB=sqlite,postgresql
|
2019-09-12 22:12:22 +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-09-12 22:12:22 +02:00
|
|
|
ENV USER "root"
|
2020-03-27 04:10:33 +01:00
|
|
|
ENV RUSTFLAGS='-C link-arg=-s'
|
2019-09-12 22:12:22 +02:00
|
|
|
|
2019-12-28 22:52:01 +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
|
2019-09-12 22:12:22 +02:00
|
|
|
WORKDIR /app
|
|
|
|
|
2019-12-28 22:52:01 +01:00
|
|
|
# Copies over *only* your manifests and build files
|
|
|
|
COPY ./Cargo.* ./
|
|
|
|
COPY ./rust-toolchain ./rust-toolchain
|
|
|
|
COPY ./build.rs ./build.rs
|
|
|
|
|
2019-12-31 15:38:55 +01:00
|
|
|
RUN rustup target add x86_64-unknown-linux-musl
|
|
|
|
|
2019-12-28 22:52:01 +01:00
|
|
|
# Builds your dependencies and removes the
|
|
|
|
# dummy project, except the target folder
|
|
|
|
# This folder contains the compiled dependencies
|
2020-10-06 18:04:53 +02:00
|
|
|
RUN cargo build --features ${DB} --release --target=x86_64-unknown-linux-musl
|
2019-12-28 22:52:01 +01:00
|
|
|
RUN find . -not -path "./target*" -delete
|
|
|
|
|
2019-09-12 22:12:22 +02:00
|
|
|
# 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
|
|
|
|
|
2019-12-28 22:52:01 +01:00
|
|
|
# Builds again, this time it'll just be
|
|
|
|
# your actual source files being built
|
2020-10-03 20:14:17 +02:00
|
|
|
RUN cargo build --features ${DB} --release --target=x86_64-unknown-linux-musl
|
2019-09-12 22:12:22 +02:00
|
|
|
|
|
|
|
######################## RUNTIME IMAGE ########################
|
|
|
|
# Create a new stage with a minimal image
|
|
|
|
# because we already have a binary built
|
2021-02-15 00:18:47 +01:00
|
|
|
FROM alpine:3.13
|
2019-09-12 22:12:22 +02:00
|
|
|
|
|
|
|
ENV ROCKET_ENV "staging"
|
|
|
|
ENV ROCKET_PORT=80
|
|
|
|
ENV ROCKET_WORKERS=10
|
|
|
|
ENV SSL_CERT_DIR=/etc/ssl/certs
|
|
|
|
|
|
|
|
# Install needed libraries
|
|
|
|
RUN apk add --no-cache \
|
|
|
|
openssl \
|
|
|
|
curl \
|
2021-01-22 08:18:38 +01:00
|
|
|
dumb-init \
|
2020-12-16 19:31:39 +01:00
|
|
|
postgresql-libs \
|
2019-09-12 22:12:22 +02:00
|
|
|
ca-certificates
|
|
|
|
|
|
|
|
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
|
2021-03-30 21:45:10 +02:00
|
|
|
WORKDIR /
|
2019-09-12 22:12:22 +02:00
|
|
|
COPY Rocket.toml .
|
|
|
|
COPY --from=vault /web-vault ./web-vault
|
2021-04-27 23:18:32 +02:00
|
|
|
COPY --from=build /app/target/x86_64-unknown-linux-musl/release/vaultwarden .
|
2019-09-12 22:12:22 +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-09-12 22:12:22 +02:00
|
|
|
|
2020-03-26 04:13:36 +01:00
|
|
|
HEALTHCHECK --interval=60s --timeout=10s CMD ["/healthcheck.sh"]
|
2019-09-12 22:12:22 +02:00
|
|
|
|
|
|
|
# Configures the startup!
|
2021-01-22 08:18:38 +01:00
|
|
|
ENTRYPOINT ["/usr/bin/dumb-init", "--"]
|
2020-07-06 00:26:20 +02:00
|
|
|
CMD ["/start.sh"]
|