blob: c8ac717185e2ada697a4031d1c8e3f826ba02244 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
pipeline {
agent any
options { ansiColor('xterm') }
stages {
stage('Publish') {
agent {
docker {
image 'peterevans/dockerhub-description:3'
args '--entrypoint ""'
}
}
environment {
DOCKERHUB_USERNAME = 'chn2guevara'
DOCKERHUB_PASSWORD = credentials('DOCKERHUB_TOKEN')
DOCKERHUB_REPOSITORY = 'chn2guevara/languagetool'
SHORT_DESCRIPTION = 'LanguageTool image with ngrams auto-download'
README_FILEPATH = './README.md'
}
steps { sh '/entrypoint.sh' }
}
}
}
|