WSL 도커 전환과 trixie-slim 로컬 실행 복구 반영

This commit is contained in:
2026-06-11 13:06:17 +09:00
parent c1a1fcb041
commit 2040234229
13 changed files with 264 additions and 23 deletions

View File

@@ -1,4 +1,4 @@
FROM node:lts AS build
FROM node:24-trixie-slim AS build
WORKDIR /workspace
@@ -23,7 +23,7 @@ RUN pnpm install --frozen-lockfile --ignore-scripts
WORKDIR /workspace/devfront
RUN npm run build
FROM node:24-alpine AS production
FROM node:24-trixie-slim AS production
WORKDIR /app
ENV NODE_ENV=production