Remove redundant COPY config/ from Dockerfile, add config copy to setup

Config is volume-mounted in docker-compose, making the COPY unnecessary
and causing build failures when config/ is gitignored.

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
Michael Simard
2026-01-22 09:28:08 -06:00
parent 7c1b3eaa91
commit 9d0750ab27
2 changed files with 12 additions and 2 deletions

View File

@@ -14,7 +14,6 @@ RUN pip install --no-cache-dir -r requirements.txt
# Copy application code
COPY src/ ./src/
COPY config/ ./config/
# Create non-root user for security
RUN useradd -m -u 1000 appuser && \