From 3c9061e6b4e1abab0b2449fb1880b5ea5a54d3cf Mon Sep 17 00:00:00 2001 From: Vladimir Gorej Date: Mon, 13 Sep 2021 14:42:13 +0300 Subject: [PATCH] fix(Dockerfile): fix security issue in docker image Refs #7445 --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 3f96bf1d..4ed78967 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,9 +2,9 @@ # 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.19-alpine +FROM nginx:1.21-alpine -RUN apk update && apk add --no-cache "nodejs>=14.17.4-r0" +RUN apk update && apk add --no-cache "nodejs>=14.17.6-r0" LABEL maintainer="fehguy"