fix(docker): fix libtiff NULL Pointer dereference issue (#9034)

Refs https://security.snyk.io/vuln/SNYK-ALPINE317-TIFF-5747689
This commit is contained in:
Vladimír Gorej
2023-07-17 18:48:15 +02:00
committed by GitHub
parent 45e9ece967
commit 58f83b6195

View File

@@ -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"