kapllan commited on
Commit
a839cf1
·
verified ·
1 Parent(s): a30061d

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +3 -4
Dockerfile CHANGED
@@ -24,12 +24,11 @@ USER user
24
  ENV HOME=/home/user \
25
  PATH=/home/user/.local/bin:$PATH
26
 
 
27
 
28
- # COPY --chown=user . $HOME/app
29
 
30
- RUN git clone https://github.com/kapllan/SmartOpinion.git $HOME/app
31
-
32
- WORKDIR $HOME/app
33
 
34
  # Install any dependencies specified in requirements.txt
35
  RUN pip install poetry
 
24
  ENV HOME=/home/user \
25
  PATH=/home/user/.local/bin:$PATH
26
 
27
+ COPY --chown=user . $HOME/app
28
 
29
+ RUN git clone https://github.com/kapllan/SmartOpinion.git $HOME/app/SmartOpinion
30
 
31
+ WORKDIR $HOME/app/SmartOpinion
 
 
32
 
33
  # Install any dependencies specified in requirements.txt
34
  RUN pip install poetry