Update node Docker tag to v23

This commit is contained in:
Renovate Bot 2024-11-23 13:04:42 +00:00
parent 8f83cb31fc
commit 4cc8a5942c
1 changed files with 2 additions and 2 deletions

View File

@ -1,4 +1,4 @@
FROM node:18-alpine AS builder
FROM node:23-alpine AS builder
WORKDIR /app
RUN npm install -g typescript
COPY package*.json ./
@ -6,7 +6,7 @@ RUN npm install
COPY . .
RUN npm run build
FROM node:18-alpine AS server
FROM node:23-alpine AS server
WORKDIR /app
COPY package* ./
RUN npm install --production