fix(docker): copy fra riktig source-path

This commit is contained in:
Chris Christiansen 2026-05-30 21:03:03 +00:00
parent 64fb0fc2b1
commit 8eb6edf23c

View File

@ -9,10 +9,11 @@ WORKDIR /app
COPY requirements.txt . COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt RUN pip install --no-cache-dir -r requirements.txt
COPY . . COPY agents/core-logic/ .
ENV PORT=8080 ENV PORT=8080
EXPOSE 8080 EXPOSE 8080
# app.py exports `app = FastAPI(...)` # app.py exports `app = FastAPI(...)`
CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "8080"] CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "8080"]