chore(website/server): Update Node.js from 23 to 24 in Dockerfile

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
Kazuki Yamada
2025-06-07 17:18:40 +09:00
parent 77d830586e
commit 1affddbe88

View File

@@ -1,7 +1,7 @@
# ============================================================================== # ==============================================================================
# Base image # Base image
# ============================================================================== # ==============================================================================
FROM node:23-alpine AS builder FROM node:24-alpine AS builder
WORKDIR /app WORKDIR /app
COPY package*.json ./ COPY package*.json ./
@@ -18,7 +18,7 @@ RUN npm run build
# ============================================================================== # ==============================================================================
# Production dependencies # Production dependencies
# ============================================================================== # ==============================================================================
FROM node:23-alpine AS deps FROM node:24-alpine AS deps
WORKDIR /app WORKDIR /app
COPY package*.json ./ COPY package*.json ./
@@ -30,7 +30,7 @@ RUN npm ci --only=production --ignore-scripts && \
# ============================================================================== # ==============================================================================
# Runtime image # Runtime image
# ============================================================================== # ==============================================================================
FROM node:23-alpine FROM node:24-alpine
# Install git (required by repomix for remote repository processing) # Install git (required by repomix for remote repository processing)
RUN apk add --no-cache git RUN apk add --no-cache git