Files
radadmin/.build/prod/backend.Dockerfile
shihaam 2f66c04d1b
build-and-push / build (push) Canceled after 0s
build backend and auto build and push everything
2026-08-01 00:27:38 +05:00

8 lines
175 B
Docker

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