You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In this PR:
- Include tag in base image.
Renovate Bot can update the image sha with a fixed tag
([doc](https://docs.renovatebot.com/docker/#digest-updating)). Without
the tag, the updated image maybe not what we want.
RUN cp "/root/.m2/repository/com/google/api/gapic-generator-java/${DOCKER_GAPIC_GENERATOR_VERSION}/gapic-generator-java-${DOCKER_GAPIC_GENERATOR_VERSION}.jar" \
29
28
"./gapic-generator-java.jar"
30
29
31
-
# alpine:3.20.3
32
-
FROM docker.io/library/alpine@sha256:beefdbd8a1da6d2915566fde36db9db0b524eb737fc57cd1367effd16dc0d06d as glibc-compat
30
+
FROM docker.io/library/alpine:3.20.3@sha256:beefdbd8a1da6d2915566fde36db9db0b524eb737fc57cd1367effd16dc0d06d as glibc-compat
33
31
34
32
RUN apk add git sudo
35
33
# This SHA is the latest known-to-work version of this binary compatibility tool
@@ -49,8 +47,7 @@ RUN git checkout "${GLIB_MUS_SHA}"
49
47
RUN chmod a+x compile-x86_64-alpine-linux.sh
50
48
RUN sh compile-x86_64-alpine-linux.sh
51
49
52
-
# python:3.12.7-alpine3.20
53
-
FROM docker.io/library/python@sha256:5049c050bdc68575a10bcb1885baa0689b6c15152d8a56a7e399fb49f783bf98 as final
50
+
FROM docker.io/library/python:3.12.7-alpine3.20@sha256:5049c050bdc68575a10bcb1885baa0689b6c15152d8a56a7e399fb49f783bf98 as final
0 commit comments