Skip to content
This repository has been archived by the owner on Apr 4, 2023. It is now read-only.

Commit

Permalink
Fix /go/pkg folder permissions (#348) (#351)
Browse files Browse the repository at this point in the history
* Fix /go/pkg folder permissions (#348)

Signed-off-by: Anatoliy Bazko <[email protected]>
  • Loading branch information
tolusha authored Jul 17, 2019
1 parent 5bf93e4 commit c64043f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions dockerfiles/remote-plugin-go-1.10.7/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ RUN set -eux; \
/usr/local/go/pkg/obj \
; \
export GOPATH="/go"; \
mkdir -p "$GOPATH/src" "$GOPATH/bin" && chmod -R 777 "$GOPATH"; \
mkdir -p "$GOPATH/src" "$GOPATH/bin" "$GOPATH/pkg" && chmod -R 777 "$GOPATH"; \
export PATH="$GOPATH/bin:/usr/local/go/bin:$PATH"; \
go get -u -v github.com/ramya-rao-a/go-outline && \
go get -u -v github.com/acroca/go-symbols && \
Expand All @@ -61,7 +61,7 @@ RUN set -eux; \
go get -u -v github.com/haya14busa/goplay/cmd/goplay && \
go get -u -v github.com/uudashr/gopkgs/cmd/gopkgs && \
go get -u -v github.com/davidrjenni/reftools/cmd/fillstruct && \
go get -u -v github.com/alecthomas/gometalinter && \
go get -u -v github.com/alecthomas/gometalinter && \
go get -u -v github.com/go-delve/delve/cmd/dlv && \
gometalinter --install \
; \
Expand Down

0 comments on commit c64043f

Please sign in to comment.