File tree 2 files changed +2
-1
lines changed
2 files changed +2
-1
lines changed Original file line number Diff line number Diff line change 37
37
-
38
38
name : Get latest Debian base image
39
39
run : |
40
- DEBIAN_VERSION=$(curl -SsL "https://registry.hub.docker.com/v2/repositories/library/debian/tags/?name=buster -20&ordering=last_updated& " | jq -r ".results[].name | match(\"buster .*-slim\") | .string" | head -n1)
40
+ DEBIAN_VERSION=$(curl -SsL "https://registry.hub.docker.com/v2/repositories/library/debian/tags/?name=bookworm -20&ordering=last_updated" | jq -r ".results[].name | match(\"bookworm .*-slim\") | .string" | head -n1)
41
41
if [ -z "$DEBIAN_VERSION" ]
42
42
then
43
43
echo "Debian slim latest tag could not be retrieved"
Original file line number Diff line number Diff line change @@ -37,6 +37,7 @@ RUN curl -sL http://www.pgbouncer.org/downloads/files/${PGBOUNCER_VERSION}/pgbo
37
37
38
38
39
39
FROM debian:${DEBIAN_VERSION}
40
+ ARG DEBIAN_VERSION
40
41
ARG PGBOUNCER_VERSION
41
42
ARG TARGETARCH
42
43
You can’t perform that action at this time.
0 commit comments