Ev tahmini projesi ilk yükleme,

This commit is contained in:
2026-08-26 14:38:45 +03:00
commit 8035131baf
3 changed files with 54 additions and 0 deletions
+14
View File
@@ -0,0 +1,14 @@
FROM python:3.11-slim
WORKDIR /app
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
COPY . .
CMD ["uvicorn", "ev_tahmini:app", "--host", "0.0.0.0", "--port", "8000"]