chore: update container images
All checks were successful
Deploy to Staging / Build Images (push) Successful in 32s
Deploy to Staging / Deploy to Staging (push) Successful in 21s
Deploy to Staging / Verify Staging (push) Successful in 2m35s
Deploy to Staging / Notify Staging Ready (push) Successful in 7s
Deploy to Staging / Notify Staging Failure (push) Has been skipped

This commit is contained in:
Eric Gullickson
2026-02-04 19:54:35 -06:00
parent df24e89311
commit cd843e8bdd
3 changed files with 9 additions and 1 deletions

View File

@@ -81,6 +81,7 @@ jobs:
run: | run: |
docker build \ docker build \
--build-arg BUILDKIT_INLINE_CACHE=1 \ --build-arg BUILDKIT_INLINE_CACHE=1 \
--build-arg REGISTRY_MIRRORS=$REGISTRY/egullickson/mirrors \
--cache-from $REGISTRY/egullickson/ocr:latest \ --cache-from $REGISTRY/egullickson/ocr:latest \
-t ${{ steps.tags.outputs.ocr_image }} \ -t ${{ steps.tags.outputs.ocr_image }} \
-t $REGISTRY/egullickson/ocr:latest \ -t $REGISTRY/egullickson/ocr:latest \

View File

@@ -1,4 +1,10 @@
FROM python:3.11-slim # Production Dockerfile for MotoVaultPro OCR Service
# Uses mirrored base images from Gitea Package Registry
# Build argument for registry (defaults to Gitea mirrors, falls back to Docker Hub)
ARG REGISTRY_MIRRORS=git.motovaultpro.com/egullickson/mirrors
FROM ${REGISTRY_MIRRORS}/python:3.11-slim
# System dependencies # System dependencies
RUN apt-get update && apt-get install -y --no-install-recommends \ RUN apt-get update && apt-get install -y --no-install-recommends \

View File

@@ -14,6 +14,7 @@ IMAGES=(
"postgres:18-alpine" "postgres:18-alpine"
"redis:8.4-alpine" "redis:8.4-alpine"
"traefik:v3.6" "traefik:v3.6"
"python:3.11-slim"
"docker:24.0" "docker:24.0"
"docker:24.0-dind" "docker:24.0-dind"
) )