Jotzy/backend/Dockerfile

11 lines
202 B
Docker
Raw Normal View History

2025-11-23 09:08:01 +00:00
FROM python:3.11-slim
2025-11-19 21:16:32 +00:00
WORKDIR /app
2025-11-23 09:08:01 +00:00
2025-11-19 21:16:32 +00:00
COPY requirements.txt .
2025-11-23 09:08:01 +00:00
RUN pip install --no-cache-dir -r requirements.txt
2025-11-19 21:16:32 +00:00
2025-11-23 09:08:01 +00:00
COPY ./app ./app
CMD ["uvicorn", "app.main:app", "--host", "0.0.0.0", "--port", "8000"]