matthoffner commited on
Commit
f03a4f2
·
1 Parent(s): a9aabc4

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +2 -1
Dockerfile CHANGED
@@ -13,7 +13,8 @@ COPY requirements.txt ./
13
  RUN pip install --upgrade pip && \
14
  pip install -r requirements.txt
15
 
16
- COPY . .
 
17
  RUN ls -al
18
 
19
  CMD ["python", "app.py", "--host", "127.0.0.1", "--port", "7860"]
 
13
  RUN pip install --upgrade pip && \
14
  pip install -r requirements.txt
15
 
16
+ COPY --chown=user . .
17
+
18
  RUN ls -al
19
 
20
  CMD ["python", "app.py", "--host", "127.0.0.1", "--port", "7860"]