chore(deps): update Node.js version from 23.1.0 to 23.6.0

This commit is contained in:
Kazuki Yamada
2025-01-11 13:47:58 +09:00
parent 0d8ec45c93
commit 5f959bf146
4 changed files with 5 additions and 5 deletions

View File

@@ -1 +1 @@
23.1.0
23.6.0

View File

@@ -1 +1 @@
nodejs 23.1.0
nodejs 23.6.0

View File

@@ -1,4 +1,4 @@
FROM node:22-alpine
FROM node:23-alpine
RUN apk add --no-cache git

View File

@@ -1,7 +1,7 @@
# ==============================================================================
# Base image
# ==============================================================================
FROM node:22-alpine AS builder
FROM node:23-alpine AS builder
# Install git and other dependencies
RUN apk add --no-cache \
@@ -23,7 +23,7 @@ RUN npm run build
# ==============================================================================
# Production image
# ==============================================================================
FROM node:22-alpine
FROM node:23-alpine
# Install git and other dependencies
RUN apk add --no-cache \