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