We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 673a88e commit fc081e0Copy full SHA for fc081e0
1 file changed
rootfs/Dockerfile
@@ -5,13 +5,10 @@ ENV GLIDE_HOME=/root
5
6
WORKDIR /tmp
7
8
-RUN wget https://github.com/Masterminds/glide/releases/download/0.7.2/glide-0.7.2-linux-amd64.tar.gz
9
-
10
-RUN tar xvfz glide-0.7.2-linux-amd64.tar.gz
11
12
-RUN mv linux-amd64/glide /usr/local/bin/
13
14
-RUN rm -rf linux-amd64 glide-0.7.2-linux-amd64.tar.gz
+RUN wget https://github.com/Masterminds/glide/releases/download/0.7.2/glide-0.7.2-linux-amd64.tar.gz && \
+ tar xvfz glide-0.7.2-linux-amd64.tar.gz && \
+ mv linux-amd64/glide /usr/local/bin/ && \
+ rm -rf linux-amd64 glide-0.7.2-linux-amd64.tar.gz
15
16
WORKDIR /go
17
0 commit comments