Adding docker and cypress

This commit is contained in:
Jason House
2020-07-28 16:40:19 +09:00
parent 542965d834
commit 24a389f128

8
Jenkinsfile vendored
View File

@@ -15,5 +15,13 @@ pipeline {
}
}
stage('Build Docker and Test') {
steps {
sh 'docker build -f Dockerfile -t gaps-dev .'
sh 'docker run -p 8484:8484 --name gaps-dev gaps-dev'
sh 'cypress run'
}
}
}
}