pve-state/Dockerfile

13 lines
204 B
Docker
Raw Normal View History

2025-02-11 14:27:28 +01:00
FROM python:3.13-slim
2025-02-11 11:20:52 +01:00
WORKDIR /app
COPY requirements.txt ./
RUN pip install --no-cache-dir -r requirements.txt
COPY . .
EXPOSE 8000
CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "8000"]