fix: add CACHE_BUST ARG to Dockerfile + build args to force fresh COPY layers per commit

This commit is contained in:
Celes Renata
2026-05-01 23:23:49 +00:00
parent 139fbd6342
commit 3a8c6f6c80
4 changed files with 34 additions and 11 deletions
+1
View File
@@ -16,6 +16,7 @@ WORKDIR /app
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
ARG CACHE_BUST
COPY services/ /app/services/
COPY scripts/ /app/scripts/
COPY tests/ /app/tests/