From 68c807ce40574c3c926780194768bd2555f733c3 Mon Sep 17 00:00:00 2001 From: Jake Morrison Date: Sat, 2 Sep 2023 12:47:37 -0500 Subject: [PATCH] Don't run openssl by default --- deploy/ubuntu.Dockerfile | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/deploy/ubuntu.Dockerfile b/deploy/ubuntu.Dockerfile index da75791..b39cd2b 100644 --- a/deploy/ubuntu.Dockerfile +++ b/deploy/ubuntu.Dockerfile @@ -457,6 +457,7 @@ FROM ${INSTALL_BASE_IMAGE_NAME}:${INSTALL_BASE_IMAGE_TAG} AS prod-install libstdc++6 \ libgcc-s1 \ locales \ + # openssl \ # $RUNTIME_PACKAGES \ && \ # curl -sL https://aquasecurity.github.io/trivy-repo/deb/public.key -o /etc/apt/trusted.gpg.d/trivy.asc && \ @@ -559,9 +560,6 @@ FROM ${PROD_BASE_IMAGE_NAME}:${PROD_BASE_IMAGE_TAG} AS prod-base ca-certificates \ # Run health checks curl \ - # Allow app to listen on HTTPS. May not be needed if handled - # outside the application, e.g. in load balancer. - openssl \ # tini is a minimal init which will reap zombie processes # https://github.com/krallin/tini # tini \ @@ -571,6 +569,9 @@ FROM ${PROD_BASE_IMAGE_NAME}:${PROD_BASE_IMAGE_TAG} AS prod-base # Additional libs libstdc++6 \ libgcc-s1 \ + # Allow app to listen on HTTPS. May not be needed if handled + # outside the application, e.g. in load balancer. + # openssl \ # $RUNTIME_PACKAGES \ && \ # Remove packages installed temporarily. Removes everything related to