Paolo-Fraccaro commited on
Commit
eec1151
1 Parent(s): e75a007
Files changed (1) hide show
  1. Dockerfile +6 -2
Dockerfile CHANGED
@@ -56,10 +56,14 @@ ENV HOME=/home/user \
56
  # RUN conda install -c conda-forge gradio -y
57
 
58
 
59
- RUN --mount=type=secret,id=git_token,mode=0444,required=true & \
60
- echo $(https://$(cat /run/secrets/git_token)@github.com/NASA-IMPACT/hls-foundation-os.git) & \
 
 
 
61
  git clone https://$(cat /run/secrets/git_token)@github.com/NASA-IMPACT/hls-foundation-os.git
62
 
 
63
  RUN cd hls-foundation-os
64
  RUN pip3 install fine-tuning-examples/
65
 
 
56
  # RUN conda install -c conda-forge gradio -y
57
 
58
 
59
+ RUN --mount=type=secret,id=git_token,mode=0444,required=true \
60
+ echo $(https://$(cat /run/secrets/git_token)@github.com/NASA-IMPACT/hls-foundation-os.git)
61
+ # git clone https://$(cat /run/secrets/git_token)@github.com/NASA-IMPACT/hls-foundation-os.git
62
+
63
+ RUN --mount=type=secret,id=git_token,mode=0444,required=true \
64
  git clone https://$(cat /run/secrets/git_token)@github.com/NASA-IMPACT/hls-foundation-os.git
65
 
66
+
67
  RUN cd hls-foundation-os
68
  RUN pip3 install fine-tuning-examples/
69