From ec5217a305eaf1b391ce1e05783a109c1befbc0e Mon Sep 17 00:00:00 2001 From: yjy <739802212@qq.com> Date: Mon, 24 Apr 2023 15:03:30 +0000 Subject: [PATCH] =?UTF-8?q?update=20Dockerfile,upgrading=20to=20`nginx:1.2?= =?UTF-8?q?3.3'.=20Keeping=20your=20Docker=20base=20image=20up-to-date=20m?= =?UTF-8?q?eans=20you=E2=80=99ll=20benefit=20from=20security=20fixes=20in?= =?UTF-8?q?=20the=20latest=20version=20of=20your=20chosen=20image.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit We recommend upgrading to `nginx:1.23.3`, as this image has only 96 known vulnerabilities. To do this, merge this pull request, then verify your application still works as expected. Signed-off-by: yjy <739802212@qq.com> --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index c6d4e0a..b193171 100644 --- a/Dockerfile +++ b/Dockerfile @@ -8,7 +8,7 @@ RUN pnpm install RUN pnpm build -FROM nginx:1.20.0 +FROM nginx:1.23.3 # COPY ./deploy/test-login.html /usr/share/nginx/html/test-login.html -- Gitee