chore(deps): update node.js to v23.7.0

This commit is contained in:
Renovate Bot 2025-01-31 20:05:17 +00:00
parent aa559cfc26
commit d21b40205f
2 changed files with 3 additions and 3 deletions

View File

@ -1 +1 @@
nodejs 23.6.1
nodejs 23.7.0

View File

@ -1,4 +1,4 @@
FROM node:23.6.1-alpine AS builder
FROM node:23.7.0-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:23.6.1-alpine AS server
FROM node:23.7.0-alpine AS server
WORKDIR /app
COPY package* ./
RUN npm install --production