makaleChatbotu / Dockerfile
yonkasoft's picture
Upload 11 files
b9ab29b verified
raw
history blame
371 Bytes
# 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:app", "--host", "0.0.0.0", "--port", "7860"]