From 58f83b6195e25da11737dc0e5b5bef5c71aa400f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20Gorej?= Date: Mon, 17 Jul 2023 18:48:15 +0200 Subject: [PATCH] fix(docker): fix libtiff NULL Pointer dereference issue (#9034) Refs https://security.snyk.io/vuln/SNYK-ALPINE317-TIFF-5747689 --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 64db56924b8..5c3d1c644b8 100644 --- a/Dockerfile +++ b/Dockerfile @@ -4,7 +4,7 @@ FROM nginx:1.25.1-alpine -RUN apk update && apk add --no-cache "nodejs>=18.14.1-r0" && apk add --no-cache "tiff>=4.4.0-r3" +RUN apk update && apk add --no-cache "nodejs>=18.14.1-r0" && apk add --no-cache "tiff>=4.4.0-r4" LABEL maintainer="fehguy"