mirror of
https://github.com/Monadical-SAS/reflector.git
synced 2026-03-21 22:56:47 +00:00
10 lines
251 B
Docker
10 lines
251 B
Docker
FROM python:3.12-slim
|
|
|
|
RUN pip install --no-cache-dir fastapi uvicorn[standard]
|
|
|
|
WORKDIR /app
|
|
COPY integration/mock_daily_server.py /app/mock_daily_server.py
|
|
|
|
EXPOSE 8080
|
|
CMD ["uvicorn", "mock_daily_server:app", "--host", "0.0.0.0", "--port", "8080"]
|