mirror of
https://github.com/yamadashy/repomix.git
synced 2025-06-11 00:25:54 +03:00
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:
@@ -1,7 +1,7 @@
|
||||
# ==============================================================================
|
||||
# Base image
|
||||
# ==============================================================================
|
||||
FROM node:23-alpine AS builder
|
||||
FROM node:24-alpine AS builder
|
||||
|
||||
WORKDIR /app
|
||||
COPY package*.json ./
|
||||
@@ -18,7 +18,7 @@ RUN npm run build
|
||||
# ==============================================================================
|
||||
# Production dependencies
|
||||
# ==============================================================================
|
||||
FROM node:23-alpine AS deps
|
||||
FROM node:24-alpine AS deps
|
||||
|
||||
WORKDIR /app
|
||||
COPY package*.json ./
|
||||
@@ -30,7 +30,7 @@ RUN npm ci --only=production --ignore-scripts && \
|
||||
# ==============================================================================
|
||||
# Runtime image
|
||||
# ==============================================================================
|
||||
FROM node:23-alpine
|
||||
FROM node:24-alpine
|
||||
|
||||
# Install git (required by repomix for remote repository processing)
|
||||
RUN apk add --no-cache git
|
||||
|
||||
Reference in New Issue
Block a user