fix: copy static/ into image so FileResponse can serve opax.html

This commit is contained in:
chrischristiansen-glitch 2026-06-10 21:09:23 +02:00
parent 268e13d8d2
commit 40788c35d4

View File

@ -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