From 4703aad8f5cd97373312bd326997a04a0a2da8bb Mon Sep 17 00:00:00 2001 From: David Kalbfleisch <1.21e9W@protonmail.com> Date: Wed, 14 Feb 2024 17:24:30 -0500 Subject: [PATCH] #1043 Revision for openssl (#1650) Install, and later remove, openssl on the Docker image to be able to run the VA CA installation script. --- ci/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ci/Dockerfile b/ci/Dockerfile index 6e1f946e77..13f741aebc 100644 --- a/ci/Dockerfile +++ b/ci/Dockerfile @@ -18,7 +18,7 @@ RUN apk add --no-cache ca-certificates \ && update-ca-certificates \ && apk del --no-cache ca-certificates -RUN apk add --no-cache bash build-base git postgresql-dev g++ make libffi-dev libmagic libcurl python3-dev openssl-dev curl-dev wget +RUN apk add --no-cache bash build-base git postgresql-dev g++ make libffi-dev libmagic libcurl python3-dev openssl-dev curl-dev wget openssl RUN adduser -h /app -D vanotify @@ -42,7 +42,7 @@ COPY --chown=vanotify . . # Transfer VA certificates to the image. These certificates are grabbed from a public VA HTTP server. RUN bash scripts/import-va-certs.sh \ - && apk del --no-cache wget + && apk del --no-cache wget openssl # Generate the version file, app/version.py. This overwrites the default file needed for local development. # The safe.directory modification eliminates the error, "fatal: detected dubious ownership in repository at '/app'".