From d08505669a307c426744cc6215074c7c9f6e599d Mon Sep 17 00:00:00 2001 From: snyk-bot Date: Tue, 8 Aug 2023 20:19:33 +0000 Subject: [PATCH] fix: 4.0/alpine/Dockerfile to reduce vulnerabilities The following vulnerabilities are fixed with an upgrade: - https://snyk.io/vuln/SNYK-ALPINE311-ZLIB-2977081 --- 4.0/alpine/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/4.0/alpine/Dockerfile b/4.0/alpine/Dockerfile index 3caf8109..7d1dc0f5 100644 --- a/4.0/alpine/Dockerfile +++ b/4.0/alpine/Dockerfile @@ -1,4 +1,4 @@ -FROM alpine:3.11 +FROM alpine:3.18.3 # add our user and group first to make sure their IDs get assigned consistently, regardless of whatever dependencies get added RUN addgroup -S -g 1000 redis && adduser -S -G redis -u 999 redis