Skip to content
This repository has been archived by the owner on Mar 11, 2021. It is now read-only.

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
alexeykazakov committed Dec 14, 2018
1 parent c5a1b50 commit f2022f5
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions Dockerfile.builder
Original file line number Diff line number Diff line change
Expand Up @@ -30,9 +30,11 @@ ENV PATH=$PATH:/usr/local/go/bin
# Get dep for Go package management and make sure the directory has full rwz permissions for non-root users
ENV GOPATH /tmp/go
RUN mkdir -p $GOPATH/bin && chmod a+rwx $GOPATH
RUN cd $GOPATH/bin \
RUN cd $GOPATH/bin && \
curl -L -s https://github.com/golang/dep/releases/download/v0.5.0/dep-linux-amd64 -o dep \
echo "287b08291e14f1fae8ba44374b26a2b12eb941af3497ed0ca649253e21ba2f83 dep" > dep-linux-amd64.sha256 \
sha256sum -c dep-linux-amd64.sha256
sha256sum -c dep-linux-amd64.sha256 && \
chmod a+x dep
ENV PATH $PATH:$GOPATH/bin

ENTRYPOINT ["/bin/bash"]

0 comments on commit f2022f5

Please sign in to comment.