iloom-flatten/Dockerfile
Chever John 6558d137d9
fix: use --legacy-peer-deps for npm ci
Resolves peer dependency conflict with @testing-library/react-hooks
and @types/react versions.

Co-Authored-By: Claude <noreply@anthropic.com>
2026-06-17 10:18:45 +08:00

13 lines
351 B
Docker

ARG BASE_REGISTRY=harbor-in-k3s.cheverjohn.me/library
FROM ${BASE_REGISTRY}/node:20-alpine AS builder
WORKDIR /app
COPY package.json package-lock.json ./
RUN npm ci --legacy-peer-deps
COPY . .
RUN npm run build
FROM ${BASE_REGISTRY}/nginx:1.27-alpine
COPY --from=builder /app/dist /usr/share/nginx/html
EXPOSE 3015
CMD ["nginx", "-g", "daemon off;"]