From 3646ce7b26b7a8d7de9cd2b3142113052ffb6434 Mon Sep 17 00:00:00 2001 From: snyk-bot Date: Sat, 19 Jul 2025 01:10:47 +0000 Subject: [PATCH] fix: images/basic/tmpfile/Dockerfile to reduce vulnerabilities The following vulnerabilities are fixed with an upgrade: - https://snyk.io/vuln/SNYK-ALPINE311-APKTOOLS-1534687 - https://snyk.io/vuln/SNYK-ALPINE311-OPENSSL-1569451 - https://snyk.io/vuln/SNYK-ALPINE311-OPENSSL-1569451 - https://snyk.io/vuln/SNYK-ALPINE311-ZLIB-2977081 - https://snyk.io/vuln/SNYK-ALPINE311-BUSYBOX-1920741 --- images/basic/tmpfile/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/images/basic/tmpfile/Dockerfile b/images/basic/tmpfile/Dockerfile index e3816c8cbf..6b563108d7 100644 --- a/images/basic/tmpfile/Dockerfile +++ b/images/basic/tmpfile/Dockerfile @@ -1,4 +1,4 @@ # Create file under /tmp to ensure files inside '/tmp' are not overridden. -FROM alpine:3.11.5 +FROM alpine:3.22.1 RUN mkdir -p /tmp/foo \ && echo 123 > /tmp/foo/file.txt