File size: 372 Bytes
b9ab29b
 
 
 
 
 
 
 
 
 
 
 
 
b8522d2
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# 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"]