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 \