Browse Source

docker: use git submodule sync to handle case where repo url changes

Signed-off-by: Ron Evans <ron@hybridgroup.com>
pull/895/head
Ron Evans 5 years ago
committed by Ayke
parent
commit
2521cacb51
  1. 1
      Dockerfile

1
Dockerfile

@ -12,6 +12,7 @@ COPY . /tinygo
# after copying the tinygo directory in the previous step.
RUN cd /tinygo/ && \
rm -rf ./lib/* && \
git submodule sync && \
git submodule update --init --recursive --force
RUN cd /tinygo/ && \

Loading…
Cancel
Save