Update Dockerfile
Browse files- Dockerfile +1 -1
Dockerfile
CHANGED
@@ -19,7 +19,7 @@ COPY requirements.txt .
|
|
19 |
RUN pip install --no-cache-dir -r requirements.txt
|
20 |
|
21 |
# ✅ Uygulama dosyası
|
22 |
-
COPY
|
23 |
|
24 |
# ✅ Uygulamayı başlat
|
25 |
CMD ["python", "app.py"]
|
|
|
19 |
RUN pip install --no-cache-dir -r requirements.txt
|
20 |
|
21 |
# ✅ Uygulama dosyası
|
22 |
+
COPY app.py .
|
23 |
|
24 |
# ✅ Uygulamayı başlat
|
25 |
CMD ["python", "app.py"]
|