Praveen0309 commited on
Commit
446fe03
·
1 Parent(s): 679c7d0

updated dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +2 -1
Dockerfile CHANGED
@@ -5,8 +5,9 @@ WORKDIR /app
5
  ENV FLASK_APP=app.py
6
  ENV FLASK_RUN_HOST=0.0.0.0
7
  COPY requirements.txt requirements.txt
8
- RUN chown -R user:user /app
9
  RUN pip install -r requirements.txt
 
10
  COPY --chown=user:user . /app
11
  EXPOSE 7860
12
  COPY . .
 
5
  ENV FLASK_APP=app.py
6
  ENV FLASK_RUN_HOST=0.0.0.0
7
  COPY requirements.txt requirements.txt
8
+
9
  RUN pip install -r requirements.txt
10
+ RUN chown -R user:user /app
11
  COPY --chown=user:user . /app
12
  EXPOSE 7860
13
  COPY . .