Praveen0309 commited on
Commit
2764d8b
·
1 Parent(s): 58cd525

final commit

Browse files
Files changed (1) hide show
  1. Dockerfile +1 -1
Dockerfile CHANGED
@@ -6,7 +6,7 @@ ENV HOME=/home/user \
6
  # Set the working directory to the user's home directory
7
  WORKDIR $HOME/app
8
  RUN chmod 777 $HOME/app
9
- ENV FLASK_APP=app.py
10
  ENV FLASK_RUN_HOST=0.0.0.0
11
  COPY requirements.txt requirements.txt
12
  RUN pip install --no-cache-dir --upgrade pip
 
6
  # Set the working directory to the user's home directory
7
  WORKDIR $HOME/app
8
  RUN chmod 777 $HOME/app
9
+ ENV FLASK_APP=$HOME/app.py
10
  ENV FLASK_RUN_HOST=0.0.0.0
11
  COPY requirements.txt requirements.txt
12
  RUN pip install --no-cache-dir --upgrade pip