Bump for 0.5.3

Image build off of 0.5.3 instead of master (less docker rebuilding)
Fixed small bug with clean script
Fixed does not delete empty key (less docker rebuilding)
This commit is contained in:
Andy Neff 2015-07-23 21:03:20 -04:00
parent adac57858a
commit c1b093bab1
5 changed files with 7 additions and 11 deletions

@ -36,7 +36,3 @@ for IMAGE_DIR in "${IMAGE_DIRS[@]}"; do
$SUDO docker build -t $(basename ${IMAGE_DIR}) -f ${IMAGE_DIR}/Dockerfile ${CUR_DIR}
done
#Remove it if its size zero
if [ ! -s "${CUR_DIR}/signing.key" ]; then
rm "${CUR_DIR}/signing.key"
fi

@ -11,10 +11,10 @@ RUN yum install -y createrepo rsync git gnupg gnupg2 expect
#Next time. So that the LONG build/installed in centos are only done once, and
#stored in the image.
ENV DOCKER_LFS_BUILD_VERSION=master
#ENV DOCKER_LFS_BUILD_VERSION=v0.5.3
#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=v0.5.3
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

@ -11,10 +11,10 @@ RUN yum install -y createrepo rsync golang tar gnupg2 expect
#Next time. So that the LONG build/installed in centos are only done once, and
#stored in the image.
ENV DOCKER_LFS_BUILD_VERSION=master
#ENV DOCKER_LFS_BUILD_VERSION=v0.5.3
#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=v0.5.3
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

@ -11,10 +11,10 @@ RUN yum install -y createrepo rsync git ruby ruby-devel golang gnupg2 rpm-sign e
#Next time. So that the LONG build/installed in centos are only done once, and
#stored in the image.
ENV DOCKER_LFS_BUILD_VERSION=master
#ENV DOCKER_LFS_BUILD_VERSION=v0.5.3
#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=v0.5.3
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

@ -8,7 +8,7 @@ CWD=$(cd $(dirname ${BASH_SOURCE[0]}); pwd)
rm -rv ${CWD}/BUILD ${CWD}/BUILDROOT ${CWD}/RPMS ${CWD}/SRPMS || :
find ${CWD}/SOURCES -not -name git-lfs.repo -delete
find ${CWD}/SOURCES -not -name git-lfs.repo -delete || :
rm ${CWD}/SPECS/golang.spec || :