build backend and auto build and push everything
build-and-push / build (push) Canceled after 0s

This commit is contained in:
2026-08-01 00:27:38 +05:00
parent 533faabab9
commit 2f66c04d1b
7 changed files with 102 additions and 11 deletions
+7
View File
@@ -0,0 +1,7 @@
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"]