fix(docker): copy fra riktig source-path
This commit is contained in:
parent
64fb0fc2b1
commit
8eb6edf23c
|
|
@ -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"]
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue
Block a user