This commit is contained in:
Adam Wojdyla 2022-04-02 22:39:07 +02:00
parent 731d9d8c82
commit 93e2249deb

View File

@ -1,14 +1,15 @@
pipeline { pipeline {
agent any agent {
docker { image 's444507_create_dataset_image:latest' }
}
stages { stages {
stage('Get arifacts') { stage('Get arifacts') {
steps { steps {
copyArtifacts fingerprintArtifacts: true, projectName: 's444507_create_dataset_image', selector: lastSuccessful() copyArtifacts fingerprintArtifacts: true, projectName: 's444507-create-dataset', selector: lastSuccessful()
} }
} }
stage('Show stats') { stage('Show stats') {
steps { steps {
sh " docker image ls"
sh "./stats-docker.sh" sh "./stats-docker.sh"
} }
} }