1 Commits
v0.0.1 ... main

Author SHA1 Message Date
90162bb14f Use mirror.gcr.io for Docker base images to avoid Docker Hub rate limits
All checks were successful
Build and Push / build (push) Successful in 44s
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-03-15 15:07:57 +01:00
2 changed files with 5 additions and 3 deletions

View File

@@ -1,5 +1,5 @@
# ---- Stage 1: Build frontend ---- # ---- Stage 1: Build frontend ----
FROM node:22-alpine AS frontend-build FROM mirror.gcr.io/library/node:22-alpine AS frontend-build
WORKDIR /app/frontend WORKDIR /app/frontend
COPY frontend/package.json frontend/package-lock.json ./ COPY frontend/package.json frontend/package-lock.json ./
RUN npm ci RUN npm ci
@@ -7,7 +7,7 @@ COPY frontend/ ./
RUN npx vite build RUN npx vite build
# ---- Stage 2: Build Go backend ---- # ---- Stage 2: Build Go backend ----
FROM golang:1.26-alpine AS backend-build FROM mirror.gcr.io/library/golang:1.26-alpine AS backend-build
WORKDIR /app/backend WORKDIR /app/backend
COPY backend/go.mod backend/go.sum ./ COPY backend/go.mod backend/go.sum ./
RUN go mod download RUN go mod download
@@ -15,7 +15,7 @@ COPY backend/ ./
RUN CGO_ENABLED=0 GOOS=linux go build -ldflags="-s -w" -o /server ./cmd/server RUN CGO_ENABLED=0 GOOS=linux go build -ldflags="-s -w" -o /server ./cmd/server
# ---- Stage 3: Runtime ---- # ---- Stage 3: Runtime ----
FROM alpine:3.21 FROM mirror.gcr.io/library/alpine:3.21
RUN apk add --no-cache ca-certificates tzdata RUN apk add --no-cache ca-certificates tzdata
WORKDIR /app WORKDIR /app

View File

@@ -776,6 +776,8 @@ This allows hot-reload development while the Go backend handles API and WebSocke
The Dockerfile uses three stages for a minimal production image: The Dockerfile uses three stages for a minimal production image:
All base images are pulled from `mirror.gcr.io` (Google's public Docker Hub mirror) to avoid Docker Hub rate limits.
**Stage 1 -- Frontend build** (Node 22 Alpine): **Stage 1 -- Frontend build** (Node 22 Alpine):
- Installs npm dependencies (`npm ci`) - Installs npm dependencies (`npm ci`)
- Builds React app with Vite (`npx vite build`) - Builds React app with Vite (`npx vite build`)