From e9a867f8fc385183303995542bd613caf262d74b Mon Sep 17 00:00:00 2001 From: Scott Hatlen Date: Mon, 9 Mar 2026 20:30:18 -0700 Subject: [PATCH] Add CI/CD workflow and use Harbor cache for base images Co-Authored-By: Claude Opus 4.6 --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index de2e7a4..cf8fb41 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ # Multi-stage build for React Awards Map -FROM node:20-alpine AS frontend-builder +FROM harbor.scottyah.com/dockerhub-cache/library/node:20-alpine AS frontend-builder WORKDIR /app/frontend @@ -16,7 +16,7 @@ COPY frontend/ ./ RUN npm run build # Production stage -FROM node:20-alpine +FROM harbor.scottyah.com/dockerhub-cache/library/node:20-alpine WORKDIR /app