-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Modified jenkins dockerfile and removing drupal image
- Loading branch information
Showing
4 changed files
with
12 additions
and
49 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,6 +4,17 @@ MAINTAINER Flemming Andersen <[email protected]> | |
|
||
USER root | ||
|
||
RUN apt-get update && apt-get install -y make && rm -rf /var/lib/apt/lists/* | ||
RUN apt-get update && apt-get install -y curl git mercurial make binutils gcc build-essential && rm -rf /var/lib/apt/lists/* | ||
|
||
RUN curl -sS https://godeb.s3.amazonaws.com/godeb-amd64.tar.gz | tar -xz && chmod +x ./godeb | ||
|
||
RUN ./godeb install && rm -f ./godeb ./go_*.deb | ||
|
||
USER jenkins | ||
|
||
RUN mkdir -p $HOME/go | ||
|
||
ENV GOPATH $HOME/go | ||
|
||
ENV PATH $PATH:$GOPATH/bin | ||
|