Arbazkhan-cs commited on
Commit
f03efe3
1 Parent(s): 206100c

Update Dockerfile

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