From 15012f749ebea1f1798b47c8898c7ed117edcfb0 Mon Sep 17 00:00:00 2001 From: snyk-bot Date: Sun, 15 Dec 2024 04:22:51 +0000 Subject: [PATCH] fix: Dockerfile to reduce vulnerabilities The following vulnerabilities are fixed with an upgrade: - https://snyk.io/vuln/SNYK-ALPINE318-OPENSSL-8235200 - https://snyk.io/vuln/SNYK-ALPINE318-OPENSSL-8235200 --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index e40e35e..fb4150a 100644 --- a/Dockerfile +++ b/Dockerfile @@ -6,7 +6,7 @@ RUN apk add --update nodejs npm COPY ["package.json", "package-lock.json*", "index.js", "./"] RUN npm install --omit=dev -FROM alpine:3.18 AS deploy +FROM alpine:3.21.0 AS deploy RUN apk add --update nodejs npm COPY --from=builder /usr/src/app /app WORKDIR /app