| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- FROM debian:squeeze
- MAINTAINER Jakob Borg <[email protected]>
- ENV GOLANG_VERSION 1.3.3
- # SCMs for "go get", gcc for cgo
- RUN apt-get update && apt-get install -y \
- ca-certificates curl gcc libc6-dev make \
- bzr git mercurial unzip \
- --no-install-recommends \
- && apt-get clean \
- && rm -rf /var/lib/apt/lists/*
- # Get the binary dist of Go to be able to bootstrap gonative.
- RUN curl -sSL https://golang.org/dl/go${GOLANG_VERSION}.linux-amd64.tar.gz \
- | tar -v -C /usr/local -xz
- ENV PATH /usr/local/go/bin:$PATH
- RUN mkdir /go
- ENV GOPATH /go
- ENV PATH /go/bin:$PATH
- WORKDIR /go
- # Use gonative to install native Go for most arch/OS combos
- RUN go get github.com/calmh/gonative \
- && cd /usr/local \
- && rm -rf go \
- && gonative -version $GOLANG_VERSION
- # Rebuild the special and missing versions
- RUN bash -xec '\
- cd /usr/local/go/src; \
- for platform in linux/386 freebsd/386 windows/386 linux/arm openbsd/amd64 openbsd/386; do \
- GOOS=${platform%/*} \
- GOARCH=${platform##*/} \
- GOARM=5 \
- GO386=387 \
- CGO_ENABLED=0 \
- ./make.bash --no-clean 2>&1; \
- done \
- && ./make.bash --no-clean \
- '
- # Install packages needed for test coverage
- RUN go get github.com/tools/godep \
- && go get code.google.com/p/go.tools/cmd/cover \
- && go get github.com/axw/gocov/gocov \
- && go get github.com/AlekSi/gocov-xml
- # Random build users needs to be able to create stuff in /go
- RUN chmod -R 777 /go/bin /go/pkg /go/src
|