File tree 1 file changed +1
-3
lines changed
1 file changed +1
-3
lines changed Original file line number Diff line number Diff line change 18
18
# When updating, update the README and the alpine_version ARG
19
19
# * Use current version from https://alpinelinux.org/downloads/
20
20
# * ARGs repeat because Dockerfile ARGs are layer specific but will reuse the value defined here.
21
- ARG alpine_version=3.18.2
21
+ ARG alpine_version=3.18.5
22
22
23
23
# We copy files from the context into a scratch container first to avoid a problem where docker and
24
24
# docker-compose don't share layer hashes https://github.com/docker/compose/issues/883 normally.
75
75
# * java-cacerts: implicitly gets normal ca-certs used outside Java (this does not depend on java)
76
76
# * libc6-compat: BoringSSL for Netty per https://github.com/grpc/grpc-java/blob/master/SECURITY.md#netty
77
77
apk add --no-cache java-cacerts ca-certificates libc6-compat && \
78
- # Force install versions that don't have CVE-2023-2975. This can be removed on future versions.
79
- apk add --no-cache libcrypto3=3.1.1-r3 libssl3=3.1.1-r3 && \
80
78
# Typically, only amd64 is tested in CI: Run a command to ensure binaries match current arch.
81
79
ldd /lib/libz.so.1
82
80
You can’t perform that action at this time.
0 commit comments