update Jenkinsfile

This commit is contained in:
Łukasz Koziej 2023-04-05 14:48:14 +02:00
parent d35b412b36
commit df16f5b271

4
Jenkinsfile vendored
View File

@ -1,4 +1,7 @@
node { node {
def dockerImage = docker.build("lukkoz2")
dockerImage.inside {
stage('Preparation') { stage('Preparation') {
properties([ properties([
parameters([ parameters([
@ -50,3 +53,4 @@ stage('Save data into artifacts') {
archiveArtifacts artifacts: 'books_edited.csv', followSymlinks: false archiveArtifacts artifacts: 'books_edited.csv', followSymlinks: false
} }
} }
}