datnguyentien204 commited on
Commit
dca6d48
·
verified ·
1 Parent(s): 3c5d3da

Delete Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +0 -14
Dockerfile DELETED
@@ -1,14 +0,0 @@
1
- FROM python:3.10.14-slim
2
- LABEL authors="nguye"
3
- WORKDIR /app
4
- COPY requirements.txt .
5
- RUN pip install -r requirements.txt
6
- COPY . .
7
- ENV FLASK_APP=app.py
8
- ENV FLASK_RUN_HOST=0.0.0.0
9
-
10
- # Mở cổng 8888
11
- EXPOSE 8888
12
-
13
- # Chạy ứng dụng Flask
14
- CMD ["flask", "run"]