From 770fb9d2ad964b81019f7806bdc3f3905d1c455b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20Gorej?= Date: Thu, 15 Feb 2024 10:54:18 +0100 Subject: [PATCH] fix(docker): fix libexpat vulnerability (#9600) --- Dockerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index c3706056397..53ff7af9c5e 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,11 +2,11 @@ # We don't declare them here — take a look at our docs. # https://github.com/swagger-api/swagger-ui/blob/master/docs/usage/configuration.md -FROM nginx:1.25.3-alpine +FROM nginx:1.25.4-alpine -RUN apk update && apk add --no-cache "nodejs>=18.14.1-r0" && apk add --no-cache "tiff>=4.4.0-r4" +RUN apk add "nodejs" -LABEL maintainer="fehguy" +LABEL maintainer="char0n" ENV API_KEY="**None**" \ SWAGGER_JSON="/app/swagger.json" \