Spaces:
Configuration error

chat / Dockerfile
yonkasoft's picture
Update Dockerfile
a0d0b52 verified
raw
history blame
678 Bytes
# 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"]