diff --git a/Dockerfile b/Dockerfile index 6ce9bb7..bd6c298 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,11 +1,12 @@ -FROM node:20-alpine AS builder +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 nginx:1.27-alpine +FROM ${BASE_REGISTRY}/nginx:1.27-alpine COPY --from=builder /app/dist /usr/share/nginx/html EXPOSE 3015 CMD ["nginx", "-g", "daemon off;"]