create-aaa.jenkinsfile

This commit is contained in:
Artur 2024-10-02 20:02:46 +02:00
parent 83e7dcc994
commit e562350254
1 changed files with 14 additions and 0 deletions

14
create-aaa.jenkinsfile Executable file
View File

@ -0,0 +1,14 @@
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);
}
}
}
}
}