diff --git a/Jenkinsfile b/Jenkinsfile index 936b343..7a7f60f 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -25,7 +25,7 @@ pipeline { steps { script { - def image = docker.build("springci/spring-data-release-tools:0.6", "ci") + def image = docker.build("springci/spring-data-release-tools:0.7", "ci") docker.withRegistry('', 'hub.docker.com-springbuildmaster') { image.push() } @@ -39,7 +39,7 @@ pipeline { } agent { docker { - image 'springci/spring-data-release-tools:0.6' + image 'springci/spring-data-release-tools:0.7' } } options { timeout(time: 4, unit: 'HOURS') } diff --git a/ci/Dockerfile b/ci/Dockerfile index 14ddb0c..481f0bc 100755 --- a/ci/Dockerfile +++ b/ci/Dockerfile @@ -17,7 +17,7 @@ RUN set -eux; \ sed -i -e 's/ports.ubuntu.com/ftp.tu-chemnitz.de\/pub\/linux/g' /etc/apt/sources.list && \ sed -i -e 's/http/https/g' /etc/apt/sources.list && \ apt-get update && \ - apt-get -y install curl zip gnupg gnupg1 libfreetype6 + apt-get -y install curl zip gnupg gnupg1 libfreetype6 fontconfig RUN rm -rf /var/lib/apt/lists/* && \ rm -rf /tmp/*