From 7d6d26a7127e8b283dbe403bea408ed1f5573ff9 Mon Sep 17 00:00:00 2001 From: snyk-bot Date: Wed, 20 Nov 2024 13:59:31 +0000 Subject: [PATCH] fix: services/api/Dockerfile to reduce vulnerabilities The following vulnerabilities are fixed with an upgrade: - https://snyk.io/vuln/SNYK-ALPINE319-BUSYBOX-6913413 - https://snyk.io/vuln/SNYK-ALPINE319-BUSYBOX-6913413 - https://snyk.io/vuln/SNYK-ALPINE319-BUSYBOX-6928845 - https://snyk.io/vuln/SNYK-ALPINE319-BUSYBOX-6928846 - https://snyk.io/vuln/SNYK-ALPINE319-BUSYBOX-6928847 --- services/api/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/services/api/Dockerfile b/services/api/Dockerfile index c4223304..51d12fcc 100644 --- a/services/api/Dockerfile +++ b/services/api/Dockerfile @@ -1,7 +1,7 @@ ################################ # Build assets ################################ -FROM node:20.13.0-alpine as builder +FROM node:20.18.0-alpine as builder WORKDIR /app @@ -13,7 +13,7 @@ RUN npm run build ################################ # Create server ################################ -FROM node:20.13.0-alpine +FROM node:20.18.0-alpine WORKDIR /app