Merge pull request 'Update node Docker tag to v23' (#10) from renovate/node-23.x into master

Reviewed-on: bizcochito/bizcochito.onion#10
This commit is contained in:
bizcochito 2024-11-29 14:11:19 +00:00
commit 894e2131cd
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