arti-angular-app/create-aaa.jenkinsfile

14 lines
258 B
Plaintext
Executable File

pipeline {
agent any
stages {
stage('create ginx-with-tools-docker') {
steps {
script{
def nxinx_build ="docker build --file angular.dockerfile -t arti-angular-app ."
sh(nxinx_build);
}
}
}
}
}