diff --git a/Dockerfile b/Dockerfile index 6a8b88d..4fe4b77 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ # Stage 1: Build -FROM node:20-alpine AS build +FROM ghcr.io/cartsnitch/mirror/node:20-alpine AS build WORKDIR /app @@ -10,7 +10,7 @@ COPY . . RUN npm run build # Stage 2: Production -FROM nginx:stable-alpine AS prod +FROM ghcr.io/cartsnitch/mirror/nginx:stable-alpine AS prod COPY --from=build /app/dist /usr/share/nginx/html COPY nginx.conf /etc/nginx/conf.d/default.conf