git-lfs/docker/bootstrap_centos_5.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

36 lines
1.4 KiB
Docker

FROM centos:5
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-repo-dir:/src -v repo_dir:/repo"
RUN yum install -y epel-release && \
yum install -y createrepo rsync git gnupg gnupg2 expect 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
#The purpose of this is to build and install everything needed to build git-lfs
#Next time. So that the LONG build/installed in centos are only done once, and
#stored in the image.
#Set to master if you want the lastest, but IF there is a failure,
#the docker will not build, so I decided to make a stable version the default
ENV DOCKER_LFS_BUILD_VERSION=[{DOCKER_LFS_BUILD_VERSION}]
ADD https://github.com/github/git-lfs/archive/${DOCKER_LFS_BUILD_VERSION}.tar.gz /tmp/docker_setup/
RUN cd /tmp/docker_setup/; \
tar zxf ${DOCKER_LFS_BUILD_VERSION}.tar.gz; \
cd /tmp/docker_setup/git-lfs-*/rpm; \
touch build.log; \
tail -f build.log & ./build_rpms.bsh; \
pkill tail; \
rm -rvf /tmp/docker_setup/git-lfs-*/rpm/BUILD*