Spaces:
Configuration error
Configuration error
# read the doc: https://huggingface.co/docs/hub/spaces-sdks-docker | |
FROM python:3.10 | |
# Kullanıcı oluştur ve ayarla | |
RUN useradd -m -u 1000 user | |
USER user | |
ENV PATH="/home/user/.local/bin:$PATH" | |
# Çalışma dizinini oluştur | |
WORKDIR /app | |
# Gerekli Python paketlerini yükle | |
COPY --chown=user ./requirements.txt requirements.txt | |
RUN pip install --no-cache-dir --upgrade -r requirements.txt | |
# FastAPI uygulama kodlarını kopyala | |
COPY --chown=user . /app | |
# Uvicorn ile uygulamayı başlat | |
CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "8080"] | |