fix: Dockerfile to reduce vulnerabilities

The following vulnerabilities are fixed with an upgrade:
- https://snyk.io/vuln/SNYK-ALPINE320-OPENSSL-7413532
- https://snyk.io/vuln/SNYK-ALPINE320-OPENSSL-7413532
This commit is contained in:
snyk-bot
2024-07-25 06:54:39 +00:00
parent 2aafce2429
commit 5e5d478e7d

View File

@@ -1,7 +1,7 @@
FROM node:lts
# Build stage
FROM node:lts-alpine AS build
FROM node:20.15.1-alpine3.20 AS build
WORKDIR /app
@@ -16,7 +16,7 @@ RUN yarn build
RUN yarn cache clean
# Final stage
FROM node:lts-alpine AS final
FROM node:20.15.1-alpine3.20 AS final
WORKDIR /app