Files
MobileManager/Dockerfile
Odysseus 9800c0bfb6
Some checks failed
Build and Push Docker Image / build-and-push (push) Failing after 3m1s
Initial commit
2026-06-06 12:17:30 +00:00

15 lines
222 B
Docker

FROM python:3.11-slim
WORKDIR /app
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
COPY app/ .
RUN mkdir data
EXPOSE 8000
CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "8000"]