From 40788c35d4e6df8c8119f236707e6214c72ae39a Mon Sep 17 00:00:00 2001 From: chrischristiansen-glitch Date: Wed, 10 Jun 2026 21:09:23 +0200 Subject: [PATCH] fix: copy static/ into image so FileResponse can serve opax.html --- agents/core-logic/Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/agents/core-logic/Dockerfile b/agents/core-logic/Dockerfile index 1ecad54..c310864 100644 --- a/agents/core-logic/Dockerfile +++ b/agents/core-logic/Dockerfile @@ -3,6 +3,7 @@ WORKDIR /app COPY agents/core-logic/requirements.txt . RUN pip install --no-cache-dir -r requirements.txt COPY agents/ ./agents/ +COPY static/ ./static/ ENV PORT=8080 ENV PYTHONPATH=/app WORKDIR /app/agents/core-logic