From ee5f3c05a196eeed1dcc9c1b17e46f1d0ebc2c42 Mon Sep 17 00:00:00 2001 From: snyk-bot Date: Sun, 16 Mar 2025 07:49:41 +0000 Subject: [PATCH] fix: services/auth-api/Dockerfile to reduce vulnerabilities The following vulnerabilities are fixed with an upgrade: - https://snyk.io/vuln/SNYK-UPSTREAM-NODE-8650517 - https://snyk.io/vuln/SNYK-UPSTREAM-NODE-8651420 - https://snyk.io/vuln/SNYK-UPSTREAM-NODE-8670156 - https://snyk.io/vuln/SNYK-ALPINE321-MUSL-8720634 - https://snyk.io/vuln/SNYK-ALPINE321-MUSL-8720634 --- services/auth-api/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/services/auth-api/Dockerfile b/services/auth-api/Dockerfile index 3bf72c3d..2c23813a 100644 --- a/services/auth-api/Dockerfile +++ b/services/auth-api/Dockerfile @@ -1,7 +1,7 @@ ################################ # Build server ################################ -FROM node:20.18.1-alpine as builder +FROM node:20.19.0-alpine as builder WORKDIR /app @@ -13,7 +13,7 @@ RUN npm run build ################################ # Create Docker image ################################ -FROM node:20.18.1-alpine +FROM node:20.19.0-alpine WORKDIR /app