We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 65a261d commit 29a63c4Copy full SHA for 29a63c4
Dockerfile
@@ -0,0 +1,7 @@
1
+FROM tomcat:8.0
2
+
3
+ADD ./webapp/target/*.war /usr/local/tomcat/webapps/
4
5
+EXPOSE 8080
6
7
+CMD ["catalina.sh", "run"]
Jenkinsfile
@@ -4,6 +4,7 @@ pipeline {
stage('Build'){
steps{
bat 'mvn clean package'
+ bat "docker build . -t tomcatwebapp:${env.BUILD_ID}"
8
}
9
10
0 commit comments