From 29e33356c5d01b370bf763daa470d570fa795406 Mon Sep 17 00:00:00 2001 From: HotSwapp <47397945+HotSwapp@users.noreply.github.com> Date: Thu, 4 Sep 2025 15:54:29 -0500 Subject: [PATCH] chore(docker): allow overriding base image via BASE_IMAGE arg for registry mirrors --- Dockerfile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 069558f..13edc0c 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,7 @@ # Delphi Consulting Group Database System - Docker Configuration -FROM python:3.12-slim +# Allow overriding the base image via build-arg to use mirrors if Docker Hub is flaky +ARG BASE_IMAGE=python:3.12-slim +FROM ${BASE_IMAGE} # Set environment variables ENV PYTHONDONTWRITEBYTECODE=1 \