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
|
# 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
|
||||||
|
|||||||
Reference in New Issue
Block a user