Spaces:
Build error
Build error
# Temel imaj | |
FROM python:3.11.4 | |
# Çalışma dizinini ayarla | |
WORKDIR /deneme | |
# Gereksinimler dosyasını kopyala | |
COPY requirements.txt /deneme/requirements.txt | |
# Gereksinimleri yükle | |
RUN pip install --no-cache-dir --upgrade -r /deneme/requirements.txt | |
# Uygulamanızı başlatma komutu | |
CMD ["uvicorn", "app:app2", "--host", "0.0.0.0", "--port", "7860"] | |