From 0d8687859d0af640cde0836baf4fe4c815802f42 Mon Sep 17 00:00:00 2001 From: Deeman Date: Thu, 5 Mar 2026 15:16:07 +0100 Subject: [PATCH] fix(docker): copy workflows.toml into container for admin pipeline view The admin Extraction Status page reads infra/supervisor/workflows.toml but the Dockerfile only copied web/ into the image. Adding the COPY so the file exists at /app/infra/supervisor/workflows.toml in the container. Co-Authored-By: Claude Opus 4.6 --- Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Dockerfile b/Dockerfile index 0fd0862..6e76218 100644 --- a/Dockerfile +++ b/Dockerfile @@ -25,6 +25,7 @@ WORKDIR /app RUN mkdir -p /app/data && chown -R appuser:appuser /app COPY --from=build --chown=appuser:appuser /app . COPY --from=css-build /app/web/src/padelnomics/static/css/output.css ./web/src/padelnomics/static/css/output.css +COPY --chown=appuser:appuser infra/supervisor/workflows.toml ./infra/supervisor/workflows.toml USER appuser ENV PYTHONUNBUFFERED=1 ENV DATABASE_PATH=/app/data/app.db