flare / Dockerfile
ciyidogan's picture
Update Dockerfile
2d54740 verified
raw
history blame
513 Bytes
# ✅ 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"]