Gabriel Luiz Freitas Almeida commited on
Commit
9ef40dc
·
1 Parent(s): 5ec2854

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +3 -2
Dockerfile CHANGED
@@ -10,11 +10,12 @@ USER user
10
  ENV HOME=/home/user \
11
  PATH=/home/user/.local/bin:$PATH
12
 
13
- WORKDIR $HOME/langflow
14
  # Clone the langflow repository and switch to the dev branch
15
  ADD https://api.github.com/repos/logspace-ai/langflow/git/refs/heads/dev version.json
16
  RUN git clone https://github.com/logspace-ai/langflow.git
17
- RUN git checkout dev
 
18
 
19
 
20
 
 
10
  ENV HOME=/home/user \
11
  PATH=/home/user/.local/bin:$PATH
12
 
13
+ WORKDIR $HOME
14
  # Clone the langflow repository and switch to the dev branch
15
  ADD https://api.github.com/repos/logspace-ai/langflow/git/refs/heads/dev version.json
16
  RUN git clone https://github.com/logspace-ai/langflow.git
17
+ RUN cd langflow && git checkout dev
18
+ WORKDIR $HOME/langflow
19
 
20
 
21