2021-09-13 12:00:52 +02:00
|
|
|
# syntax=docker/dockerfile:1
|
|
|
|
|
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.
|
2019-12-28 22:52:01 +01:00
|
|
|
# Using multistage build:
|
2018-09-27 16:05:50 +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:
|
2023-08-13 08:31:31 +02:00
|
|
|
# $ docker pull docker.io/vaultwarden/web-vault:v2023.7.1
|
|
|
|
# $ docker image inspect --format "{{.RepoDigests}}" docker.io/vaultwarden/web-vault:v2023.7.1
|
|
|
|
# [docker.io/vaultwarden/web-vault@sha256:b306f38fe0d54fa3d79059a737f8e1803da44ddc5f273c2aecdd6a4886211b0f]
|
2021-01-25 02:26:25 +01:00
|
|
|
#
|
|
|
|
# - Conversely, to get the tag name from the digest:
|
2023-08-13 08:31:31 +02:00
|
|
|
# $ docker image inspect --format "{{.RepoTags}}" docker.io/vaultwarden/web-vault@sha256:b306f38fe0d54fa3d79059a737f8e1803da44ddc5f273c2aecdd6a4886211b0f
|
|
|
|
# [docker.io/vaultwarden/web-vault:v2023.7.1]
|
2020-03-26 04:13:36 +01:00
|
|
|
#
|
2023-08-13 08:31:31 +02:00
|
|
|
FROM docker.io/vaultwarden/web-vault@sha256:b306f38fe0d54fa3d79059a737f8e1803da44ddc5f273c2aecdd6a4886211b0f as vault
|
2018-09-27 16:05:50 +02:00
|
|
|
|
|
|
|
########################## BUILD IMAGE ##########################
|
2023-08-13 18:52:23 +02:00
|
|
|
FROM docker.io/library/rust:1.71.1-bookworm as build
|
2021-12-26 12:40:12 +01:00
|
|
|
|
2019-12-31 16:20:04 +01:00
|
|
|
# Build time options to avoid dpkg warnings and help with reproducible builds.
|
2021-09-13 12:00:52 +02:00
|
|
|
ENV DEBIAN_FRONTEND=noninteractive \
|
|
|
|
LANG=C.UTF-8 \
|
|
|
|
TZ=UTC \
|
|
|
|
TERM=xterm-256color \
|
|
|
|
CARGO_HOME="/root/.cargo" \
|
2023-06-11 18:11:09 +02:00
|
|
|
REGISTRIES_CRATES_IO_PROTOCOL=sparse \
|
2021-09-13 12:00:52 +02:00
|
|
|
USER="root"
|
|
|
|
|
|
|
|
# Create CARGO_HOME folder and don't download rust docs
|
|
|
|
RUN mkdir -pv "${CARGO_HOME}" \
|
|
|
|
&& rustup set profile minimal
|
2019-11-24 17:52:54 +01:00
|
|
|
|
2023-01-19 06:50:29 +01:00
|
|
|
# Install build dependencies for the arm64 architecture
|
2021-12-26 12:40:12 +01:00
|
|
|
RUN dpkg --add-architecture arm64 \
|
2019-12-31 15:17:31 +01:00
|
|
|
&& apt-get update \
|
|
|
|
&& apt-get install -y \
|
|
|
|
--no-install-recommends \
|
2023-01-19 06:50:29 +01:00
|
|
|
gcc-aarch64-linux-gnu \
|
2020-10-06 18:04:53 +02:00
|
|
|
libc6-dev:arm64 \
|
|
|
|
libmariadb-dev:arm64 \
|
2021-05-08 16:48:48 +02:00
|
|
|
libmariadb-dev-compat:arm64 \
|
2023-01-19 06:50:29 +01:00
|
|
|
libmariadb3:arm64 \
|
|
|
|
libpq-dev:arm64 \
|
|
|
|
libpq5:arm64 \
|
|
|
|
libssl-dev:arm64 \
|
2021-09-13 12:00:52 +02:00
|
|
|
#
|
|
|
|
# Make sure cargo has the right target config
|
|
|
|
&& echo '[target.aarch64-unknown-linux-gnu]' >> "${CARGO_HOME}/config" \
|
|
|
|
&& echo 'linker = "aarch64-linux-gnu-gcc"' >> "${CARGO_HOME}/config" \
|
|
|
|
&& echo 'rustflags = ["-L/usr/lib/aarch64-linux-gnu"]' >> "${CARGO_HOME}/config"
|
|
|
|
|
|
|
|
# Set arm specific environment values
|
2021-12-26 12:40:12 +01:00
|
|
|
ENV CC_aarch64_unknown_linux_gnu="/usr/bin/aarch64-linux-gnu-gcc" \
|
|
|
|
CROSS_COMPILE="1" \
|
|
|
|
OPENSSL_INCLUDE_DIR="/usr/include/aarch64-linux-gnu" \
|
|
|
|
OPENSSL_LIB_DIR="/usr/lib/aarch64-linux-gnu"
|
2021-09-13 12:00:52 +02:00
|
|
|
|
|
|
|
# Creates a dummy project used to grab dependencies
|
|
|
|
RUN USER=root cargo new --bin /app
|
|
|
|
WORKDIR /app
|
|
|
|
|
|
|
|
# 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 aarch64-unknown-linux-gnu
|
|
|
|
|
2021-12-26 12:40:12 +01:00
|
|
|
# Configure the DB ARG as late as possible to not invalidate the cached layers above
|
|
|
|
ARG DB=sqlite,mysql,postgresql
|
|
|
|
|
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
|
2021-05-08 16:48:48 +02:00
|
|
|
RUN cargo build --features ${DB} --release --target=aarch64-unknown-linux-gnu \
|
|
|
|
&& find . -not -path "./target*" -delete
|
2018-09-27 16:05:50 +02:00
|
|
|
|
|
|
|
# Copies the complete project
|
|
|
|
# To avoid copying unneeded files, use .dockerignore
|
|
|
|
COPY . .
|
|
|
|
|
2019-12-28 22:52:01 +01:00
|
|
|
# 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
|
2019-11-24 17:52:54 +01:00
|
|
|
RUN cargo build --features ${DB} --release --target=aarch64-unknown-linux-gnu
|
2018-09-27 16:05:50 +02:00
|
|
|
|
|
|
|
######################## RUNTIME IMAGE ########################
|
|
|
|
# Create a new stage with a minimal image
|
|
|
|
# because we already have a binary built
|
2023-06-11 18:11:09 +02:00
|
|
|
FROM docker.io/balenalib/aarch64-debian:bookworm
|
2018-09-27 16:05:50 +02:00
|
|
|
|
2022-02-07 22:26:22 +01:00
|
|
|
ENV ROCKET_PROFILE="release" \
|
|
|
|
ROCKET_ADDRESS=0.0.0.0 \
|
|
|
|
ROCKET_PORT=80
|
2018-09-27 16:05:50 +02:00
|
|
|
|
|
|
|
RUN [ "cross-build-start" ]
|
|
|
|
|
2021-05-08 16:48:48 +02:00
|
|
|
# Create data folder and Install needed libraries
|
|
|
|
RUN mkdir /data \
|
|
|
|
&& apt-get update && apt-get install -y \
|
2019-07-06 08:36:18 +02:00
|
|
|
--no-install-recommends \
|
|
|
|
ca-certificates \
|
2019-09-06 10:34:21 +02:00
|
|
|
curl \
|
2020-10-06 18:04:53 +02:00
|
|
|
libmariadb-dev-compat \
|
|
|
|
libpq5 \
|
2023-01-19 06:50:29 +01:00
|
|
|
openssl \
|
2021-09-13 12:00:52 +02:00
|
|
|
&& apt-get clean \
|
2019-12-28 22:52:01 +01:00
|
|
|
&& rm -rf /var/lib/apt/lists/*
|
2018-09-27 16:05:50 +02:00
|
|
|
|
2019-12-28 22:52:01 +01:00
|
|
|
RUN [ "cross-build-end" ]
|
2018-09-27 16:05:50 +02:00
|
|
|
|
|
|
|
VOLUME /data
|
|
|
|
EXPOSE 80
|
2019-12-28 22:52:01 +01:00
|
|
|
EXPOSE 3012
|
2018-09-27 16:05:50 +02:00
|
|
|
|
2019-01-07 01:36:01 +01:00
|
|
|
# Copies the files from the context (Rocket.toml file and web-vault)
|
2018-09-27 16:05:50 +02:00
|
|
|
# and the binary from the "build" stage to the current stage
|
2021-03-30 21:45:10 +02:00
|
|
|
WORKDIR /
|
2018-09-27 16:05:50 +02:00
|
|
|
COPY --from=vault /web-vault ./web-vault
|
2021-04-27 23:18:32 +02:00
|
|
|
COPY --from=build /app/target/aarch64-unknown-linux-gnu/release/vaultwarden .
|
2018-09-27 16:05:50 +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
|
|
|
|
2020-07-06 00:26:20 +02:00
|
|
|
CMD ["/start.sh"]
|