benjolo commited on
Commit
35ea11f
1 Parent(s): a05bf9b

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +2 -1
Dockerfile CHANGED
@@ -6,6 +6,7 @@ USER user
6
  ENV HOME=/home/user \
7
  PATH=/home/user/.local/bin:$PATH
8
 
 
9
  COPY --chown=user ./backend $HOME/backend
10
 
11
  # Change to backend as working directory
@@ -14,7 +15,7 @@ WORKDIR $HOME/backend
14
  RUN mkdir $HOME/.cache
15
 
16
  # Copy the current directory contents into the container at .
17
- COPY . .
18
 
19
  # Install OS Libs
20
  RUN apt-get update \
 
6
  ENV HOME=/home/user \
7
  PATH=/home/user/.local/bin:$PATH
8
 
9
+ # Copy the current directory contents into the container at .
10
  COPY --chown=user ./backend $HOME/backend
11
 
12
  # Change to backend as working directory
 
15
  RUN mkdir $HOME/.cache
16
 
17
  # Copy the current directory contents into the container at .
18
+ # COPY . .
19
 
20
  # Install OS Libs
21
  RUN apt-get update \