From f2fa72316e5ad9cd577626e2610711fc318cc43b Mon Sep 17 00:00:00 2001 From: Deploy Debbie Date: Wed, 18 Mar 2026 20:59:25 +0000 Subject: [PATCH] =?UTF-8?q?fix:=20use=20Docker=20Hub=20base=20images=20dir?= =?UTF-8?q?ectly=20=E2=80=94=20GHCR=20mirrors=20not=20yet=20populated?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-Authored-By: Paperclip --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 4fe4b77..6a8b88d 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ # Stage 1: Build -FROM ghcr.io/cartsnitch/mirror/node:20-alpine AS build +FROM node:20-alpine AS build WORKDIR /app @@ -10,7 +10,7 @@ COPY . . RUN npm run build # Stage 2: Production -FROM ghcr.io/cartsnitch/mirror/nginx:stable-alpine AS prod +FROM nginx:stable-alpine AS prod COPY --from=build /app/dist /usr/share/nginx/html COPY nginx.conf /etc/nginx/conf.d/default.conf