You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
630 B
24 lines
630 B
podTemplate(yaml: """
|
|
kind: Pod
|
|
spec:
|
|
containers:
|
|
- name: kaniko
|
|
image: gcr.io/kaniko-project/executor:debug-539ddefcae3fd6b411a95982a830d987f4214251
|
|
imagePullPolicy: Always
|
|
command:
|
|
- /busybox/cat
|
|
tty: true
|
|
"""
|
|
) {
|
|
|
|
node(POD_LABEL) {
|
|
stage('Build') {
|
|
git 'https://gyulai.cloud/git/bme/covidok-backend.git'
|
|
container('kaniko') {
|
|
stage('Build and publish dev Docker image') {
|
|
sh '/kaniko/executor -f covidok-backend/CoviDok/Dockerfile -c `pwd` --destination=docker.local/bme/covidok'
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|