makaleChatbotu / Dockerfile
yonkasoft's picture
Upload 4 files
b8522d2 verified
raw
history blame contribute delete
No virus
372 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:app2", "--host", "0.0.0.0", "--port", "7860"]