fix: node version (#332)

This commit is contained in:
Kalidou Diagne
2025-04-17 22:11:02 +03:00
committed by GitHub
parent a3aa7b65d6
commit 5115e43d48

View File

@@ -1,4 +1,4 @@
FROM node:18-alpine3.18 as builder
FROM node:20-alpine as builder
RUN apk add --no-cache git curl
WORKDIR /builder
@@ -10,7 +10,7 @@ COPY . .
RUN yarn build
# Create image by copying build artifacts
FROM node:18-alpine3.18 as runner
FROM node:20-alpine as runner
USER node