Files
pokedexter/Dockerfile_backend
T

10 lines
236 B
Plaintext
Raw Normal View History

2026-07-01 21:10:06 +02:00
FROM python:3.12-slim
WORKDIR /app
COPY backend/requirements.txt .
2026-07-01 21:10:06 +02:00
RUN pip install --no-cache-dir -r requirements.txt
COPY backend/app/ ./app/
2026-07-01 21:10:06 +02:00
CMD ["uvicorn", "app.main:app", "--host", "0.0.0.0", "--port", "8000", "--proxy-headers"]