1
0
mirror of https://github.com/rancher/os.git synced 2025-09-18 08:06:48 +00:00

Roll back dapper to 0.3.4 because the latest version breaks the build

This commit is contained in:
niusmallnan
2019-01-30 15:40:45 +08:00
committed by niusmallnan
parent cd19f55edb
commit e226c543c0
2 changed files with 2 additions and 2 deletions

View File

@@ -157,7 +157,7 @@ RUN curl -fL ${!BUILD_DOCKER_URL} > /usr/bin/docker && \
chmod +x /usr/bin/docker
# Install dapper
RUN curl -sL https://releases.rancher.com/dapper/latest/dapper-`uname -s`-`uname -m | sed 's/arm.*/arm/'` > /usr/bin/dapper && \
RUN curl -sL https://releases.rancher.com/dapper/v0.3.4/dapper-`uname -s`-`uname -m | sed 's/arm.*/arm/'` > /usr/bin/dapper && \
chmod +x /usr/bin/dapper
RUN cd ${DOWNLOADS} && \

View File

@@ -2,7 +2,7 @@ TARGETS := $(shell ls scripts | grep -vE 'clean|run|help|release*|build-moby|run
.dapper:
@echo Downloading dapper
@curl -sL https://releases.rancher.com/dapper/latest/dapper-`uname -s`-`uname -m|sed 's/v7l//'` > .dapper.tmp
@curl -sL https://releases.rancher.com/dapper/v0.3.4/dapper-`uname -s`-`uname -m|sed 's/v7l//'` > .dapper.tmp
@@chmod +x .dapper.tmp
@./.dapper.tmp -v
@mv .dapper.tmp .dapper