From 05e58cb9e45a6723b8e6931ddfa516f37b8f6829 Mon Sep 17 00:00:00 2001 From: tangowithfoxtrot <5676771+tangowithfoxtrot@users.noreply.github.com> Date: Tue, 6 May 2025 10:22:32 -0700 Subject: [PATCH] fix: add `SSL_CERT_DIR` to remaining images --- util/MsSqlMigratorUtility/Dockerfile | 2 ++ util/Nginx/Dockerfile | 2 ++ util/Setup/Dockerfile | 2 ++ 3 files changed, 6 insertions(+) diff --git a/util/MsSqlMigratorUtility/Dockerfile b/util/MsSqlMigratorUtility/Dockerfile index edc202bc93..eab9bf8b65 100644 --- a/util/MsSqlMigratorUtility/Dockerfile +++ b/util/MsSqlMigratorUtility/Dockerfile @@ -60,6 +60,8 @@ FROM mcr.microsoft.com/dotnet/aspnet:8.0 ARG TARGETPLATFORM LABEL com.bitwarden.product="bitwarden" +ENV SSL_CERT_DIR=/etc/bitwarden/ca-certificates + # Copy app from the build stage WORKDIR /app COPY --from=build /source/util/MsSqlMigratorUtility/out /app diff --git a/util/Nginx/Dockerfile b/util/Nginx/Dockerfile index acdcfae96a..d0d05b0bf7 100644 --- a/util/Nginx/Dockerfile +++ b/util/Nginx/Dockerfile @@ -3,6 +3,8 @@ FROM --platform=$BUILDPLATFORM nginx:stable ARG TARGETPLATFORM LABEL com.bitwarden.product="bitwarden" +ENV SSL_CERT_DIR=/etc/bitwarden/ca-certificates + RUN apt-get update \ && apt-get install -y --no-install-recommends \ gosu \ diff --git a/util/Setup/Dockerfile b/util/Setup/Dockerfile index 6266405d9d..d43ecac38f 100644 --- a/util/Setup/Dockerfile +++ b/util/Setup/Dockerfile @@ -54,6 +54,8 @@ FROM mcr.microsoft.com/dotnet/aspnet:8.0 ARG TARGETPLATFORM LABEL com.bitwarden.product="bitwarden" com.bitwarden.project="setup" +ENV SSL_CERT_DIR=/etc/bitwarden/ca-certificates + RUN apt-get update \ && apt-get install -y --no-install-recommends \ openssl \