2021-09-13 12:00:52 +02:00
|
|
|
# syntax=docker/dockerfile:1
|
|
|
|
|
2020-03-01 02:38:26 +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
|
|
|
|
2022-05-21 17:46:14 +02:00
|
|
|
{% set build_stage_base_image = "rust:1.61-bullseye" %}
|
2019-12-28 22:52:01 +01:00
|
|
|
{% if "alpine" in target_file %}
|
2020-09-22 00:39:39 +02:00
|
|
|
{% if "amd64" in target_file %}
|
2022-05-21 17:46:14 +02:00
|
|
|
{% set build_stage_base_image = "blackdex/rust-musl:x86_64-musl-stable-1.61.0" %}
|
2022-07-31 15:45:31 +02:00
|
|
|
{% set runtime_stage_base_image = "alpine:3.16" %}
|
2020-10-11 17:26:49 +02:00
|
|
|
{% set package_arch_target = "x86_64-unknown-linux-musl" %}
|
2021-01-09 11:33:36 +01:00
|
|
|
{% elif "armv7" in target_file %}
|
2022-05-21 17:46:14 +02:00
|
|
|
{% set build_stage_base_image = "blackdex/rust-musl:armv7-musleabihf-stable-1.61.0" %}
|
2022-07-31 15:45:31 +02:00
|
|
|
{% set runtime_stage_base_image = "balenalib/armv7hf-alpine:3.16" %}
|
2020-10-11 17:26:49 +02:00
|
|
|
{% set package_arch_target = "armv7-unknown-linux-musleabihf" %}
|
2021-12-26 12:40:12 +01:00
|
|
|
{% elif "armv6" in target_file %}
|
2022-05-21 17:46:14 +02:00
|
|
|
{% set build_stage_base_image = "blackdex/rust-musl:arm-musleabi-stable-1.61.0" %}
|
2022-07-31 15:45:31 +02:00
|
|
|
{% set runtime_stage_base_image = "balenalib/rpi-alpine:3.16" %}
|
2021-12-26 12:40:12 +01:00
|
|
|
{% set package_arch_target = "arm-unknown-linux-musleabi" %}
|
|
|
|
{% elif "arm64" in target_file %}
|
2022-05-21 17:46:14 +02:00
|
|
|
{% set build_stage_base_image = "blackdex/rust-musl:aarch64-musl-stable-1.61.0" %}
|
2022-07-31 15:45:31 +02:00
|
|
|
{% set runtime_stage_base_image = "balenalib/aarch64-alpine:3.16" %}
|
2021-12-26 12:40:12 +01:00
|
|
|
{% set package_arch_target = "aarch64-unknown-linux-musl" %}
|
2020-09-22 00:39:39 +02:00
|
|
|
{% endif %}
|
2019-12-28 22:52:01 +01:00
|
|
|
{% elif "amd64" in target_file %}
|
2022-03-20 18:51:24 +01:00
|
|
|
{% set runtime_stage_base_image = "debian:bullseye-slim" %}
|
2021-01-09 11:33:36 +01:00
|
|
|
{% elif "arm64" in target_file %}
|
2022-03-20 18:51:24 +01:00
|
|
|
{% set runtime_stage_base_image = "balenalib/aarch64-debian:bullseye" %}
|
2019-12-28 22:52:01 +01:00
|
|
|
{% set package_arch_name = "arm64" %}
|
2020-10-11 17:26:49 +02:00
|
|
|
{% set package_arch_target = "aarch64-unknown-linux-gnu" %}
|
|
|
|
{% set package_cross_compiler = "aarch64-linux-gnu" %}
|
2021-01-09 11:33:36 +01:00
|
|
|
{% elif "armv6" in target_file %}
|
2022-03-20 18:51:24 +01:00
|
|
|
{% set runtime_stage_base_image = "balenalib/rpi-debian:bullseye" %}
|
2019-12-28 22:52:01 +01:00
|
|
|
{% set package_arch_name = "armel" %}
|
2020-10-11 17:26:49 +02:00
|
|
|
{% set package_arch_target = "arm-unknown-linux-gnueabi" %}
|
|
|
|
{% set package_cross_compiler = "arm-linux-gnueabi" %}
|
2021-01-09 11:33:36 +01:00
|
|
|
{% elif "armv7" in target_file %}
|
2022-03-20 18:51:24 +01:00
|
|
|
{% set runtime_stage_base_image = "balenalib/armv7hf-debian:bullseye" %}
|
2019-12-28 22:52:01 +01:00
|
|
|
{% set package_arch_name = "armhf" %}
|
2020-10-11 17:26:49 +02:00
|
|
|
{% set package_arch_target = "armv7-unknown-linux-gnueabihf" %}
|
|
|
|
{% set package_cross_compiler = "arm-linux-gnueabihf" %}
|
2019-12-28 22:52:01 +01:00
|
|
|
{% endif %}
|
2020-10-11 17:26:49 +02:00
|
|
|
{% if package_arch_name is defined %}
|
|
|
|
{% set package_arch_prefix = ":" + package_arch_name %}
|
|
|
|
{% else %}
|
2019-12-28 22:52:01 +01:00
|
|
|
{% set package_arch_prefix = "" %}
|
|
|
|
{% endif %}
|
2020-10-11 17:26:49 +02:00
|
|
|
{% if package_arch_target is defined %}
|
|
|
|
{% set package_arch_target_param = " --target=" + package_arch_target %}
|
|
|
|
{% else %}
|
|
|
|
{% set package_arch_target_param = "" %}
|
|
|
|
{% endif %}
|
2021-09-13 12:00:52 +02:00
|
|
|
{% if "buildx" in target_file %}
|
|
|
|
{% set mount_rust_cache = "--mount=type=cache,target=/root/.cargo/git --mount=type=cache,target=/root/.cargo/registry " %}
|
|
|
|
{% else %}
|
|
|
|
{% set mount_rust_cache = "" %}
|
|
|
|
{% endif %}
|
2020-03-01 02:38:26 +01:00
|
|
|
# Using multistage build:
|
|
|
|
# https://docs.docker.com/develop/develop-images/multistage-build/
|
|
|
|
# https://whitfin.io/speeding-up-rust-docker-builds/
|
|
|
|
####################### VAULT BUILD IMAGE #######################
|
2022-09-08 17:46:02 +02:00
|
|
|
{% set vault_version = "v2022.9.0" %}
|
|
|
|
{% set vault_image_digest = "sha256:99d21235a64084c9115f4aa3da1298881b8bbf146c0d48d6530b4d685a6a6fbc" %}
|
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.
|
2020-03-16 22:34:59 +01:00
|
|
|
#
|
2021-01-25 02:26:25 +01:00
|
|
|
# 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:
|
2022-07-06 15:56:17 +02:00
|
|
|
# $ docker pull vaultwarden/web-vault:{{ vault_version }}
|
|
|
|
# $ docker image inspect --format "{{ '{{' }}.RepoDigests}}" vaultwarden/web-vault:{{ vault_version }}
|
2021-04-27 23:18:32 +02:00
|
|
|
# [vaultwarden/web-vault@{{ vault_image_digest }}]
|
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@{{ vault_image_digest }}
|
2022-07-06 15:56:17 +02:00
|
|
|
# [vaultwarden/web-vault:{{ vault_version }}]
|
2021-01-25 02:26:25 +01:00
|
|
|
#
|
2021-04-27 23:18:32 +02:00
|
|
|
FROM vaultwarden/web-vault@{{ vault_image_digest }} as vault
|
2019-12-28 22:52:01 +01:00
|
|
|
|
|
|
|
########################## BUILD IMAGE ##########################
|
2019-12-31 15:13:43 +01:00
|
|
|
FROM {{ build_stage_base_image }} as build
|
2019-12-28 22:52:01 +01:00
|
|
|
|
2021-12-26 12:40:12 +01:00
|
|
|
|
2020-10-11 17:26:49 +02: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" \
|
|
|
|
USER="root"
|
2019-12-31 16:20:04 +01:00
|
|
|
|
2021-09-13 12:00:52 +02:00
|
|
|
|
|
|
|
# Create CARGO_HOME folder and don't download rust docs
|
|
|
|
RUN {{ mount_rust_cache -}} mkdir -pv "${CARGO_HOME}" \
|
|
|
|
&& rustup set profile minimal
|
2019-12-28 22:52:01 +01:00
|
|
|
|
|
|
|
{% if "alpine" in target_file %}
|
2022-03-27 14:45:50 +02:00
|
|
|
{% if "armv6" in target_file %}
|
|
|
|
# To be able to build the armv6 image with mimalloc we need to specifically specify the libatomic.a file location
|
|
|
|
ENV RUSTFLAGS='-Clink-arg=/usr/local/musl/{{ package_arch_target }}/lib/libatomic.a'
|
2021-03-23 23:47:12 +01:00
|
|
|
{% endif %}
|
2020-08-19 00:02:14 +02:00
|
|
|
{% elif "arm" in target_file %}
|
2021-09-13 12:00:52 +02:00
|
|
|
#
|
2019-12-31 15:17:31 +01:00
|
|
|
# Install required build libs for {{ package_arch_name }} architecture.
|
2021-12-26 12:40:12 +01:00
|
|
|
# hadolint ignore=DL3059
|
|
|
|
RUN dpkg --add-architecture {{ package_arch_name }} \
|
2019-12-31 15:17:31 +01:00
|
|
|
&& apt-get update \
|
|
|
|
&& apt-get install -y \
|
|
|
|
--no-install-recommends \
|
|
|
|
libssl-dev{{ package_arch_prefix }} \
|
2020-10-06 18:04:53 +02:00
|
|
|
libc6-dev{{ package_arch_prefix }} \
|
|
|
|
libpq5{{ package_arch_prefix }} \
|
2021-12-26 12:40:12 +01:00
|
|
|
libpq-dev{{ package_arch_prefix }} \
|
|
|
|
libmariadb3{{ package_arch_prefix }} \
|
2020-10-06 18:04:53 +02:00
|
|
|
libmariadb-dev{{ package_arch_prefix }} \
|
2021-05-08 16:48:48 +02:00
|
|
|
libmariadb-dev-compat{{ package_arch_prefix }} \
|
2020-10-11 17:26:49 +02:00
|
|
|
gcc-{{ package_cross_compiler }} \
|
2021-09-13 12:00:52 +02:00
|
|
|
#
|
|
|
|
# Make sure cargo has the right target config
|
|
|
|
&& echo '[target.{{ package_arch_target }}]' >> "${CARGO_HOME}/config" \
|
|
|
|
&& echo 'linker = "{{ package_cross_compiler }}-gcc"' >> "${CARGO_HOME}/config" \
|
|
|
|
&& echo 'rustflags = ["-L/usr/lib/{{ package_cross_compiler }}"]' >> "${CARGO_HOME}/config"
|
2019-12-28 22:52:01 +01:00
|
|
|
|
2021-09-13 12:00:52 +02:00
|
|
|
# Set arm specific environment values
|
2021-12-26 12:40:12 +01:00
|
|
|
ENV CC_{{ package_arch_target | replace("-", "_") }}="/usr/bin/{{ package_cross_compiler }}-gcc" \
|
|
|
|
CROSS_COMPILE="1" \
|
|
|
|
OPENSSL_INCLUDE_DIR="/usr/include/{{ package_cross_compiler }}" \
|
|
|
|
OPENSSL_LIB_DIR="/usr/lib/{{ package_cross_compiler }}"
|
2019-12-31 15:49:22 +01:00
|
|
|
|
2021-09-13 12:00:52 +02:00
|
|
|
{% elif "amd64" in target_file %}
|
2020-08-19 00:02:14 +02:00
|
|
|
# Install DB packages
|
2021-09-13 12:00:52 +02:00
|
|
|
RUN apt-get update \
|
|
|
|
&& apt-get install -y \
|
|
|
|
--no-install-recommends \
|
|
|
|
libmariadb-dev{{ package_arch_prefix }} \
|
|
|
|
libpq-dev{{ package_arch_prefix }} \
|
|
|
|
&& apt-get clean \
|
2019-12-28 22:52:01 +01:00
|
|
|
&& rm -rf /var/lib/apt/lists/*
|
|
|
|
{% endif %}
|
2020-08-19 00:02:14 +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-12-28 22:52:01 +01: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-11 17:26:49 +02:00
|
|
|
{% if package_arch_target is defined %}
|
2021-09-13 12:00:52 +02:00
|
|
|
RUN {{ mount_rust_cache -}} rustup target add {{ package_arch_target }}
|
2019-12-31 15:38:55 +01:00
|
|
|
{% endif %}
|
2020-09-22 00:39:39 +02:00
|
|
|
|
2021-12-26 12:40:12 +01:00
|
|
|
# Configure the DB ARG as late as possible to not invalidate the cached layers above
|
2022-03-27 14:45:50 +02:00
|
|
|
{% if "alpine" in target_file %}
|
2022-03-20 18:51:24 +01:00
|
|
|
# Enable MiMalloc to improve performance on Alpine builds
|
|
|
|
ARG DB=sqlite,mysql,postgresql,enable_mimalloc
|
|
|
|
{% else %}
|
2021-12-26 12:40:12 +01:00
|
|
|
ARG DB=sqlite,mysql,postgresql
|
2022-03-20 18:51:24 +01:00
|
|
|
{% endif %}
|
2021-12-26 12:40:12 +01:00
|
|
|
|
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-09-13 12:00:52 +02:00
|
|
|
RUN {{ mount_rust_cache -}} cargo build --features ${DB} --release{{ package_arch_target_param }} \
|
2021-05-08 16:48:48 +02:00
|
|
|
&& find . -not -path "./target*" -delete
|
2019-12-28 22:52:01 +01: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
|
|
|
|
|
|
|
|
# Builds again, this time it'll just be
|
|
|
|
# your actual source files being built
|
2021-12-26 12:40:12 +01:00
|
|
|
# hadolint ignore=DL3059
|
2021-09-13 12:00:52 +02:00
|
|
|
RUN {{ mount_rust_cache -}} cargo build --features ${DB} --release{{ package_arch_target_param }}
|
2019-12-28 22:52:01 +01:00
|
|
|
|
|
|
|
######################## RUNTIME IMAGE ########################
|
|
|
|
# Create a new stage with a minimal image
|
|
|
|
# because we already have a binary built
|
2019-12-31 15:13:43 +01:00
|
|
|
FROM {{ runtime_stage_base_image }}
|
2019-12-28 22:52:01 +01:00
|
|
|
|
2022-02-07 22:26:22 +01:00
|
|
|
ENV ROCKET_PROFILE="release" \
|
|
|
|
ROCKET_ADDRESS=0.0.0.0 \
|
|
|
|
ROCKET_PORT=80
|
2021-12-26 12:40:12 +01:00
|
|
|
{%- if "alpine" in runtime_stage_base_image %} \
|
|
|
|
SSL_CERT_DIR=/etc/ssl/certs
|
2019-12-28 22:52:01 +01:00
|
|
|
{% endif %}
|
|
|
|
|
2021-12-26 12:40:12 +01:00
|
|
|
|
2019-12-28 22:52:01 +01:00
|
|
|
{% if "amd64" not in target_file %}
|
2021-05-08 16:48:48 +02:00
|
|
|
# hadolint ignore=DL3059
|
2019-12-28 22:52:01 +01:00
|
|
|
RUN [ "cross-build-start" ]
|
2019-12-31 16:24:49 +01:00
|
|
|
{% endif %}
|
2021-05-08 16:48:48 +02:00
|
|
|
|
|
|
|
# Create data folder and Install needed libraries
|
|
|
|
RUN mkdir /data \
|
2019-12-31 15:13:43 +01:00
|
|
|
{% if "alpine" in runtime_stage_base_image %}
|
2021-05-08 16:48:48 +02:00
|
|
|
&& apk add --no-cache \
|
2019-12-28 22:52:01 +01:00
|
|
|
openssl \
|
2021-08-06 13:39:33 +02:00
|
|
|
tzdata \
|
2019-12-28 22:52:01 +01:00
|
|
|
curl \
|
|
|
|
ca-certificates
|
|
|
|
{% else %}
|
2021-05-08 16:48:48 +02:00
|
|
|
&& apt-get update && apt-get install -y \
|
2019-12-28 22:52:01 +01:00
|
|
|
--no-install-recommends \
|
|
|
|
openssl \
|
|
|
|
ca-certificates \
|
|
|
|
curl \
|
2020-10-06 18:04:53 +02:00
|
|
|
libmariadb-dev-compat \
|
2019-12-28 22:52:01 +01:00
|
|
|
libpq5 \
|
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/*
|
|
|
|
{% endif %}
|
|
|
|
|
2022-05-24 15:25:51 +02:00
|
|
|
{% if "armv6" in target_file and "alpine" not in target_file %}
|
|
|
|
# In the Balena Bullseye images for armv6/rpi-debian there is a missing symlink.
|
|
|
|
# This symlink was there in the buster images, and for some reason this is needed.
|
|
|
|
# hadolint ignore=DL3059
|
|
|
|
RUN ln -v -s /lib/ld-linux-armhf.so.3 /lib/ld-linux.so.3
|
|
|
|
|
|
|
|
{% endif -%}
|
|
|
|
|
2019-12-28 22:52:01 +01:00
|
|
|
{% if "amd64" not in target_file %}
|
2021-05-08 16:48:48 +02:00
|
|
|
# hadolint ignore=DL3059
|
2019-12-28 22:52:01 +01:00
|
|
|
RUN [ "cross-build-end" ]
|
|
|
|
{% endif %}
|
2021-05-08 16:48:48 +02:00
|
|
|
|
2019-12-28 22:52:01 +01:00
|
|
|
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-12-28 22:52:01 +01:00
|
|
|
COPY --from=vault /web-vault ./web-vault
|
2020-10-11 17:26:49 +02:00
|
|
|
{% if package_arch_target is defined %}
|
2021-04-27 23:18:32 +02:00
|
|
|
COPY --from=build /app/target/{{ package_arch_target }}/release/vaultwarden .
|
2020-10-11 17:26:49 +02:00
|
|
|
{% else %}
|
2021-04-27 23:18:32 +02:00
|
|
|
COPY --from=build /app/target/release/vaultwarden .
|
2019-12-28 22:52:01 +01:00
|
|
|
{% endif %}
|
|
|
|
|
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-12-28 22:52:01 +01:00
|
|
|
|
2020-03-26 04:13:36 +01:00
|
|
|
HEALTHCHECK --interval=60s --timeout=10s CMD ["/healthcheck.sh"]
|
2019-12-28 22:52:01 +01:00
|
|
|
|
2020-07-06 00:26:20 +02:00
|
|
|
CMD ["/start.sh"]
|