add Jenkinsfile(#57)

This commit is contained in:
keita
2021-02-25 17:00:58 +09:00
parent 8f1911a016
commit 24c067742b
Vendored
+13
View File
@@ -0,0 +1,13 @@
pipeline {
agent {
dockerfile true
}
stages{
stage("Hello"){
steps{
echo "Hello from Jenkins"
}
}
}
}