iloom-flatten/Dockerfile
Chever John 5591c705de
fix: use Harbor base images for CI builds
Docker Hub unreachable from k3s cluster. Switch Dockerfile to pull
node and nginx base images from Harbor registry.

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

13 lines
332 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
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;"]