Spaces:
Configuration error
Configuration error
File size: 678 Bytes
fe9f26f e9926ee e74137c a0d0b52 e74137c e9926ee c2b911e e74137c e9926ee c2b911e a0d0b52 e9926ee e74137c a0d0b52 e74137c |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 |
# read the doc: https://huggingface.co/docs/hub/spaces-sdks-docker
FROM python:3.10
# Sistem güncellemeleri ve temel bağımlılıkların kurulumu
RUN apt-get update && apt-get install -y \
build-essential \
&& rm -rf /var/lib/apt/lists/*
# Kullanıcı oluştur ve ayarla
RUN useradd -m -u 1000 user
WORKDIR /app
# Gerekli Python paketlerini yükle
COPY --chown=user ./requirements.txt requirements.txt
RUN pip install --no-cache-dir --upgrade -r requirements.txt
# Uygulama dosyalarını kopyala
COPY --chown=user . /app
# Kullanıcıya geçiş yap
USER user
# Uvicorn ile uygulamayı başlat
CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "8080"]
|