Skip to content

Commit 56662a2

Browse files
Updates to alpine 3.18.5 and removes explicit crypto install (#35)
Signed-off-by: Adrian Cole <[email protected]>
1 parent 458b09c commit 56662a2

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

Dockerfile

+1-3
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
# When updating, update the README and the alpine_version ARG
1919
# * Use current version from https://alpinelinux.org/downloads/
2020
# * 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
2222

2323
# We copy files from the context into a scratch container first to avoid a problem where docker and
2424
# docker-compose don't share layer hashes https://github.com/docker/compose/issues/883 normally.
@@ -75,8 +75,6 @@ RUN \
7575
# * java-cacerts: implicitly gets normal ca-certs used outside Java (this does not depend on java)
7676
# * libc6-compat: BoringSSL for Netty per https://github.com/grpc/grpc-java/blob/master/SECURITY.md#netty
7777
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 && \
8078
# Typically, only amd64 is tested in CI: Run a command to ensure binaries match current arch.
8179
ldd /lib/libz.so.1
8280

0 commit comments

Comments
 (0)