aboutsummaryrefslogtreecommitdiff
path: root/Jenkinsfile
diff options
context:
space:
mode:
authorChristian Segundo2023-12-30 15:55:40 +0100
committerChristian Segundo2024-04-07 10:39:02 +0200
commit6cf291fc180874b778a7c0a89f193cf731edfa20 (patch)
treeb0f1a4f2091d251a2e437c882bb0ba0ff9f1dc3b /Jenkinsfile
parent0fbf70bb03047bb4fa84d0cae652af0ea869d5ee (diff)
downloadlanguagetool-6cf291fc180874b778a7c0a89f193cf731edfa20.tar.gz
update readme
Diffstat (limited to 'Jenkinsfile')
-rw-r--r--Jenkinsfile22
1 files changed, 22 insertions, 0 deletions
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' }
+ }
+ }
+}