1
0
mirror of https://github.com/rancher/os.git synced 2025-08-30 21:26:09 +00:00

pin dapper to v0.5.4

Sidestep https://github.com/rancher/dapper/issues/92

Signed-off-by: Jacob Blain Christen <dweomer5@gmail.com>
This commit is contained in:
Jacob Blain Christen 2021-02-02 21:54:49 -07:00
parent 0f6aa24626
commit ee2919cf0f

View File

@ -158,7 +158,9 @@ RUN curl -fL ${!BUILD_DOCKER_URL} > /usr/bin/docker && \
chmod +x /usr/bin/docker chmod +x /usr/bin/docker
# Install dapper # Install dapper
RUN curl -sL https://releases.rancher.com/dapper/latest/dapper-`uname -s`-`uname -m | sed 's/arm.*/arm/'` > /usr/bin/dapper && \ # sidestep https://github.com/rancher/dapper/issues/92 with v0.5.4
ARG DAPPER_VERSION="v0.5.4"
RUN curl -sL https://github.com/rancher/dapper/releases/download/${DAPPER_VERSION}/dapper-$(uname -s)-$(uname -m) > /usr/bin/dapper && \
chmod +x /usr/bin/dapper chmod +x /usr/bin/dapper
RUN cd ${DOWNLOADS} && \ RUN cd ${DOWNLOADS} && \