From 6cf291fc180874b778a7c0a89f193cf731edfa20 Mon Sep 17 00:00:00 2001 From: Christian Segundo Date: Sat, 30 Dec 2023 15:55:40 +0100 Subject: update readme --- Jenkinsfile | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 Jenkinsfile (limited to 'Jenkinsfile') diff --git a/Jenkinsfile b/Jenkinsfile new file mode 100644 index 0000000..c8ac717 --- /dev/null +++ b/Jenkinsfile @@ -0,0 +1,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' } + } + } +} -- cgit v1.2.3