Skip to content

Commit

Permalink
Don't run openssl by default
Browse files Browse the repository at this point in the history
  • Loading branch information
reachfh committed Sep 2, 2023
1 parent 56c18ab commit 68c807c
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions deploy/ubuntu.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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 && \
Expand Down Expand Up @@ -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 \
Expand All @@ -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
Expand Down

0 comments on commit 68c807c

Please sign in to comment.