Skip to content

Commit 7aeae07

Browse files
authored
Simplify Dockerfile by removing comments
1 parent 48cce9e commit 7aeae07

File tree

1 file changed

+0
-6
lines changed

1 file changed

+0
-6
lines changed

Dockerfile

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,8 @@
1-
# 1. Python base image
21
FROM python:3.10-slim
32

4-
# 2. Çalışma dizinini oluştur ve ayarla
53
WORKDIR /app
6-
7-
# 3. Gereken dosyaları kopyala
84
COPY . .
95

10-
# 4. Gerekli paketleri yükle
116
RUN pip install --no-cache-dir -r requirements.txt
127

13-
# 5. Uvicorn ile başlat
148
CMD ["uvicorn", "app.main:app", "--host", "0.0.0.0", "--port", "8000"]

0 commit comments

Comments
 (0)