From dfb84ad984424bc4c5a7258df161eccb7d795e55 Mon Sep 17 00:00:00 2001 From: snyk-bot Date: Fri, 23 May 2025 06:41:20 +0000 Subject: [PATCH] fix: Dockerfile to reduce vulnerabilities The following vulnerabilities are fixed with an upgrade: - https://snyk.io/vuln/SNYK-UPSTREAM-NODE-10169632 --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index cfe7654..e7dc276 100644 --- a/Dockerfile +++ b/Dockerfile @@ -17,7 +17,7 @@ COPY . . RUN npm run build # Use a lightweight Node.js image for the production environment -FROM node:alpine +FROM node:23.11.1-alpine3.21 # Set the working directory inside the container WORKDIR /app