FROM centos:5 MAINTAINER Andy Neff #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" COPY test_lfs.bsh /tmp/test_lfs.bsh CMD yum install -y curl.x86_64 && \ curl -L -O http://${REPO_HOSTNAME:-git-lfs.github.com}/centos/5/RPMS/noarch/git-lfs-repo-release-1-1.el5.noarch.rpm && \ rpm --import http://${REPO_HOSTNAME:-git-lfs.github.com}/centos/5/RPM-GPG-KEY-GITLFS && \ yum install -y git-lfs-repo-release-1-1.el5.noarch.rpm &&\ yum install -y epel-release &&\ yum install -y git-lfs.x86_64 && \ git-lfs && \ yum install -y perl-Digest-SHA golang && \ /tmp/test_lfs.bsh