Spaces:
Paused
Paused
# ✅ Temel Python imajı | |
FROM python:3.10-slim | |
# ✅ Sistem bağımlılıkları | |
RUN apt-get update && apt-get install -y gcc g++ make | |
# ✅ UID 1000 kullanıcı (genel uyum için) | |
RUN adduser --uid 1000 --disabled-password --gecos '' appuser | |
# ✅ Çalışma dizini | |
WORKDIR /app | |
# ✅ Dosyaları kopyala | |
COPY . . | |
# ✅ Requirements yükle | |
COPY requirements.txt ./ | |
RUN pip install --no-cache-dir -r requirements.txt | |
# ✅ Uygulama başlatma | |
CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860"] | |