Arbazkhan-cs commited on
Commit
443eb65
1 Parent(s): 08bf29a

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +9 -9
Dockerfile CHANGED
@@ -1,10 +1,10 @@
1
-
2
- FROM python:3.9
3
-
4
- WORKDIR /Flask_APP
5
-
6
- COPY ./requirements.txt /FLASK_APP/requirements.txt
7
- RUN pip install --no-cache-dir --upgrade -r requirements.txt
8
-
9
- COPY . .
10
  CMD ["python", "/FLASK_APP/app.py"]
 
1
+
2
+ FROM python:3.9
3
+
4
+ WORKDIR /Flask_APP
5
+
6
+ COPY ./requirements.txt /FLASK_APP/requirements.txt
7
+ RUN pip install --no-cache-dir --upgrade -r /FLASK_APP/requirements.txt
8
+
9
+ COPY . .
10
  CMD ["python", "/FLASK_APP/app.py"]