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 <[email protected]>
This commit is contained in:
2026-02-15 12:05:04 -06:00
co-authored by Claude Opus 4.6
parent 17ee28b6f6
commit c5a87df6e1
+2 -1
View File
@@ -9,8 +9,9 @@ RUN apt-get update && \
build-essential \ build-essential \
&& rm -rf /var/lib/apt/lists/* && rm -rf /var/lib/apt/lists/*
# Copy dependency files # Copy dependency files and private registry config
COPY pyproject.toml . COPY pyproject.toml .
COPY pip.conf /etc/pip.conf
# Create virtual environment and install dependencies # Create virtual environment and install dependencies
RUN python -m venv /opt/venv RUN python -m venv /opt/venv