Only master branch maintains Docker images.

This commit is contained in:
Greg Turnquist
2019-06-05 16:39:02 -05:00
parent 634479edba
commit 72c3937414
2 changed files with 0 additions and 21 deletions

15
Jenkinsfile vendored
View File

@@ -10,21 +10,6 @@ pipeline {
}
stages {
stage('Publish OpenJDK 8 + jq docker image') {
when {
changeset "ci/Dockerfile"
}
agent any
steps {
script {
def image = docker.build("springci/spring-session-data-mongodb-openjdk8-with-jq", "ci/")
docker.withRegistry('', 'hub.docker.com-springbuildmaster') {
image.push()
}
}
}
}
stage("Test: baseline (jdk8)") {
agent {
docker {

View File

@@ -1,6 +0,0 @@
FROM adoptopenjdk/openjdk8:latest
RUN apt-get update && apt-get install -y jq
RUN apt-get clean \
&& rm -rf /var/lib/apt/lists/*