We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ee25293 commit d7b2e0fCopy full SHA for d7b2e0f
Dockerfile
@@ -26,7 +26,12 @@ LABEL revision=$PRODUCT_REVISION
26
ARG UID=100
27
ARG GID=1000
28
# Create a non-root user to run the software.
29
-RUN addgroup -g ${GID} ${BIN_NAME} \
+# Install security updates not included in alpine:3.18.4.
30
+# libcrypto3, libssl3: CVE-2023-5363 CVE-2023-5678
31
+RUN apk --no-cache upgrade \
32
+ libcrypto3 \
33
+ libssl3 \
34
+ && addgroup -g ${GID} ${BIN_NAME} \
35
&& adduser -u ${UID} -S -G ${BIN_NAME} ${BIN_NAME}
36
37
# where the build system stores the builds
0 commit comments