imrnh commited on
Commit
1fb51d0
1 Parent(s): 64b7ebb

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +2 -1
Dockerfile CHANGED
@@ -5,6 +5,7 @@ WORKDIR /app
5
 
6
  COPY ./requirements.txt /app/requirements.txt
7
 
 
8
  RUN pip install --no-cache-dir --upgrade -r /app/requirements.txt
9
 
10
  RUN useradd -m -u 1000 user
@@ -13,7 +14,7 @@ ENV HOME=/home/user \
13
  PATH=/home/user/.local/bin:$PATH
14
 
15
  COPY --chown=user . $HOME/app
16
-
17
 
18
  CMD ["/app"]
19
 
 
5
 
6
  COPY ./requirements.txt /app/requirements.txt
7
 
8
+ RUN ls -R
9
  RUN pip install --no-cache-dir --upgrade -r /app/requirements.txt
10
 
11
  RUN useradd -m -u 1000 user
 
14
  PATH=/home/user/.local/bin:$PATH
15
 
16
  COPY --chown=user . $HOME/app
17
+ RUN ls -R
18
 
19
  CMD ["/app"]
20