Skip to content

Commit 61b0770

Browse files
authored
Merge pull request docker-library#19544 from J0WI/update-test-images
Update test images
2 parents 21da67c + c2f1edd commit 61b0770

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

test/tests/mongo-basics/run.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ fi
3636
if [[ "$testName" == *tls* ]]; then
3737
tlsImage="$("$testDir/../image-name.sh" librarytest/mongo-tls "$image")"
3838
"$testDir/../docker-build.sh" "$testDir" "$tlsImage" <<-EOD
39-
FROM alpine:3.19 AS certs
39+
FROM alpine:3.22 AS certs
4040
RUN apk add --no-cache openssl
4141
RUN set -eux; \
4242
mkdir /certs; \

test/tests/rabbitmq-tls/run.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,10 +31,10 @@ EOD
3131

3232
testImage="$("$dir/../image-name.sh" librarytest/rabbitmq-tls-test "$1")"
3333
"$dir/../docker-build.sh" "$dir" "$testImage" <<'EOD'
34-
FROM alpine:3.19
34+
FROM alpine:3.22
3535
RUN apk add --no-cache bash coreutils drill openssl procps
3636
# https://github.com/drwetter/testssl.sh/releases
37-
ENV TESTSSL_VERSION 3.0.8
37+
ENV TESTSSL_VERSION 3.0.10
3838
RUN set -eux; \
3939
wget -O testssl.tgz "https://github.com/drwetter/testssl.sh/archive/v${TESTSSL_VERSION}.tar.gz"; \
4040
tar -xvf testssl.tgz -C /opt; \

test/tests/redis-basics/run.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ if [[ "$testName" == *tls* ]]; then
1818

1919
tlsImage="$("$testDir/../image-name.sh" librarytest/redis-tls "$image")"
2020
"$testDir/../docker-build.sh" "$testDir" "$tlsImage" <<-EOD
21-
FROM alpine:3.19 AS certs
21+
FROM alpine:3.22 AS certs
2222
RUN apk add --no-cache openssl
2323
RUN set -eux; \
2424
mkdir /certs; \

test/tests/ruby-native-extension/run.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ docker run --interactive --rm --entrypoint sh "$buildDepsImage" -eu <<-'EOSH'
3737
platform='ruby'
3838
fi
3939
gem install bcrypt \
40-
--version 3.1.16 \
40+
--version 3.1.20 \
4141
--platform "$platform" \
4242
--silent
4343
ruby -e 'require "bcrypt"; print "it works\n"'

0 commit comments

Comments
 (0)