git-lfs/docker/git-lfs_debian_7.dockerfile
Andy Neff 88430de792 Added go 1.5.1 to docker scripts (via binary distro)
Added GOLANG_VERSION to override golang version
Disabled dependecy checking when building packages to support external
golang
2015-09-11 02:57:39 -04:00

24 lines
942 B
Docker

FROM debian:wheezy
MAINTAINER Andy Neff <andyneff@users.noreply.github.com>
#Docker RUN example, pass in the git-lfs checkout copy you are working with
LABEL RUN="docker run -v git-lfs-checkout-dir:/src -v repo_dir:/repo"
RUN echo 'deb http://http.debian.net/debian wheezy-backports main' > /etc/apt/sources.list.d/wheezy-backports-main.list
RUN DEBIAN_FRONTEND=noninteractive apt-get -y update && \
apt-get install -y -t wheezy-backports git dpkg-dev dh-golang ruby-ronn reprepro curl
ENV GOLANG_VERSION=[{GOLANG_VERSION}]
ENV GOROOT=/usr/local/go
RUN cd /usr/local && \
curl -L -O https://storage.googleapis.com/golang/go${GOLANG_VERSION}.linux-amd64.tar.gz && \
tar zxf go${GOLANG_VERSION}.linux-amd64.tar.gz && \
ln -s /usr/local/go/bin/go /usr/bin/go && \
ln -s /usr/local/go/bin/gofmt /usr/bin/gofmt
COPY git-lfs_debian_7.key debian_script.bsh distributions dpkg-package-gpg.bsh /tmp/
CMD /tmp/debian_script.bsh