diff --git a/Dockerfile b/Dockerfile index 92253b7..a894cdb 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ # ── Stage 1: build ─────────────────────────────────────────────────────────── -FROM node:20-alpine AS builder +FROM harbor.dvirlabs.com/base-images/node:20-alpine AS builder WORKDIR /app @@ -12,7 +12,7 @@ COPY . . RUN npm run build # ── Stage 2: serve ─────────────────────────────────────────────────────────── -FROM nginx:1.27-alpine AS runner +FROM harbor.dvirlabs.com/base-images/nginx:1.27-alpine AS runner # Remove default nginx config RUN rm /etc/nginx/conf.d/default.conf