From c5a87df6e1afc7cb79b8994adce1b5690b1c7fdd Mon Sep 17 00:00:00 2001 From: Jason Woltje Date: Sun, 15 Feb 2026 12:05:04 -0600 Subject: [PATCH] fix(#374): add pip.conf to coordinator Docker build for private registry The Docker build failed because pip couldn't find mosaicstack-telemetry from the private Gitea PyPI registry. Copy pip.conf into the image so pip resolves the extra-index-url during docker build. Co-Authored-By: Claude Opus 4.6 --- apps/coordinator/Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/apps/coordinator/Dockerfile b/apps/coordinator/Dockerfile index 28cac96..04d85a2 100644 --- a/apps/coordinator/Dockerfile +++ b/apps/coordinator/Dockerfile @@ -9,8 +9,9 @@ RUN apt-get update && \ build-essential \ && rm -rf /var/lib/apt/lists/* -# Copy dependency files +# Copy dependency files and private registry config COPY pyproject.toml . +COPY pip.conf /etc/pip.conf # Create virtual environment and install dependencies RUN python -m venv /opt/venv