chore: bump node version (#575)

This commit is contained in:
Anton Voylenko
2025-11-05 02:33:41 +02:00
committed by GitHub
parent e6c5a18c87
commit 1c1f97f045
3 changed files with 38 additions and 58 deletions
+2 -2
View File
@@ -1,4 +1,4 @@
FROM node:18.15-alpine3.16 as builder
FROM node:20-alpine AS builder
RUN apk update && apk add --no-cache python3 make g++
COPY . /opt/app
WORKDIR /opt/app/
@@ -6,7 +6,7 @@ RUN npm install
RUN npm run build
RUN npm prune
FROM node:18.14.1-alpine as webapp
FROM node:20-alpine AS webapp
RUN apk add curl
WORKDIR /opt/app
COPY . /opt/app