git-lfs/docker/git-lfs-test_centos_5.dockerfile
Andy Neff e41cc41100 GPG working correctly now
Started README update
Simplified gpg to a single file per docker
Auto dump public key in ./repo/os/version
Cleaned up test dockerfiles
Simplified gpg daemon scripts
Fixed bug not cleaning up old containers
Removed hack for #548
2015-07-31 16:40:23 -04:00

18 lines
731 B
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"
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