docker image fix

This commit is contained in:
2025-09-18 16:37:45 +09:00
parent 35a977536b
commit 77ae161b1a
4 changed files with 36 additions and 2 deletions

View File

@@ -15,8 +15,8 @@ RUN npm ci && npm cache clean --force
COPY src/ ./src/
COPY .env.example ./
# Build the application
RUN npm run build
# Build the application (using Linux-compatible build command)
RUN npm run build:linux
# Production stage
FROM node:18-alpine AS production