Skip to content
Snippets Groups Projects
Commit b5b6999a authored by Tom Wilkie's avatar Tom Wilkie
Browse files

Add docker client to build image.


Signed-off-by: default avatarTom Wilkie <tom.wilkie@gmail.com>
parent 0635172a
No related branches found
No related tags found
No related merge requests found
......@@ -8,6 +8,11 @@ RUN curl -fsSLo shfmt https://github.com/mvdan/sh/releases/download/v1.3.0/shfmt
echo "b1925c2c405458811f0c227266402cf1868b4de529f114722c2e3a5af4ac7bb2 shfmt" | sha256sum -c && \
chmod +x shfmt && \
mv shfmt /usr/bin
ENV VER="17.03.0-ce"
RUN curl -L -o /tmp/docker-$VER.tgz https://download.docker.com/linux/static/stable/x86_64/docker-$VER.tgz && \
tar -xz -C /tmp -f /tmp/docker-$VER.tgz && \
mv /tmp/docker/* /usr/bin && \
rm /tmp/docker-$VER.tgz
RUN go get -tags netgo \
github.com/fzipp/gocyclo \
github.com/golang/lint/golint \
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment