From f0d4cedb391d7e92adeb9f99f9995282e0dad54a Mon Sep 17 00:00:00 2001 From: Iryna Shustava Date: Tue, 9 Oct 2018 14:57:03 +0200 Subject: [PATCH] Always download latest rotation package to the docker image --- dockerfiles/rotato/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dockerfiles/rotato/Dockerfile b/dockerfiles/rotato/Dockerfile index 81a26b0..70b5a42 100644 --- a/dockerfiles/rotato/Dockerfile +++ b/dockerfiles/rotato/Dockerfile @@ -3,4 +3,4 @@ FROM golang:1.11 RUN wget https://github.com/cloudfoundry/bosh-bootloader/releases/download/v6.10.3/bbl-v6.10.3_linux_x86-64 -O /usr/local/bin/bbl && \ chmod +x /usr/local/bin/bbl -RUN go get github.com/ishustava/rotato/rotation && mv $GOPATH/bin/rotation $GOPATH/bin/rotato \ No newline at end of file +RUN go get -u github.com/ishustava/rotato/rotation && mv $GOPATH/bin/rotation $GOPATH/bin/rotato