Permalink
Cannot retrieve contributors at this time
FROM debian:jessie | |
ENV GOLANG_VERSION go1.6 | |
ENV GOLANG_DOWNLOAD_URL https://storage.googleapis.com/golang/$GOLANG_VERSION.linux-amd64.tar.gz | |
ENV GOROOT /goroot | |
ENV GOPATH /gopath | |
ENV PATH $PATH:$GOROOT/bin:$GOPATH/bin | |
RUN apt-key adv --keyserver keyserver.ubuntu.com --recv 7F0CEB10 | |
RUN echo "deb http://repo.mongodb.org/apt/debian wheezy/mongodb-org/3.0 main" | tee /etc/apt/sources.list.d/mongodb-org-3.0.list | |
RUN apt-get update && apt-get upgrade -y | |
RUN apt-get install -y \ | |
curl \ | |
build-essential \ | |
ca-certificates \ | |
git \ | |
mercurial \ | |
bzr \ | |
apt-utils\ | |
postgresql-client \ | |
mysql-client \ | |
vim \ | |
redis-tools \ | |
mongodb-org-shell \ | |
mongodb-org-tools | |
RUN mkdir /goroot && curl $GOLANG_DOWNLOAD_URL | tar xvzf - -C /goroot --strip-components=1 | |
RUN mkdir /gopath | |
RUN go get github.com/rakyll/boom | |
CMD ["bash"] |