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

Commit

Permalink
fix build
Browse files Browse the repository at this point in the history
  • Loading branch information
alexeykazakov committed Dec 14, 2018
1 parent f5f6b45 commit 0897826
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions Dockerfile.builder
Original file line number Diff line number Diff line change
Expand Up @@ -30,11 +30,9 @@ 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 "1a7bdb0d6c31ecba8b3fd213a1170adf707657123e89dff234871af9e0498be2 dep" > dep-linux-amd64.sha256 \
sha256sum -c dep-linux-amd64.sha256 && \
chmod a+x dep
ENV PATH $PATH:$GOPATH/bin
sha256sum -c dep-linux-amd64.sha256

ENTRYPOINT ["/bin/bash"]

0 comments on commit 0897826

Please sign in to comment.