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

Commit

Permalink
GOPATH chmod change, from 777 to 755
Browse files Browse the repository at this point in the history
  • Loading branch information
viktorbenei committed Jan 10, 2016
1 parent d9175d5 commit 454db77
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 3 deletions.
6 changes: 5 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
## 2016.01.09
## 2016_01_10_1

* `$GOPATH` chmod change to `755`, because Ruby complains if `777` (`warning: Insecure world writable dir ... in PATH`)

## 2016_01_09_1

* `unzip` is now pre-installed
* `ruby` updated to `2.2.4`
Expand Down
5 changes: 3 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,8 @@ ENV PATH $PATH:/usr/local/go/bin
# https://raw.githubusercontent.com/docker-library/golang/master/1.5/Dockerfile
ENV GOPATH /go
ENV PATH $GOPATH/bin:$PATH
RUN mkdir -p "$GOPATH/src" "$GOPATH/bin" && chmod -R 777 "$GOPATH"
# 755 because Ruby complains if 777 (warning: Insecure world writable dir ... in PATH)
RUN mkdir -p "$GOPATH/src" "$GOPATH/bin" && chmod -R 755 "$GOPATH"


# Install docker
Expand Down Expand Up @@ -113,5 +114,5 @@ RUN apt-get clean

WORKDIR $BITRISE_SOURCE_DIR

ENV BITRISE_DOCKER_REV_NUMBER_BASE 2016_01_09_1
ENV BITRISE_DOCKER_REV_NUMBER_BASE 2016_01_10_1
CMD bitrise --version

0 comments on commit 454db77

Please sign in to comment.