Fix: npm ci에 --legacy-peer-deps 추가로 eslint peer dependency 충돌 해결
All checks were successful
Client CI/CD / deploy (push) Successful in 10s

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-02-24 11:38:17 +09:00
parent ca08f7a2e6
commit 1a472df39c

View File

@@ -2,7 +2,7 @@
FROM node:lts-alpine AS builder FROM node:lts-alpine AS builder
WORKDIR /app WORKDIR /app
COPY package*.json ./ COPY package*.json ./
RUN npm ci RUN npm ci --legacy-peer-deps
COPY . . COPY . .
RUN npm run build RUN npm run build