Skip to content

Commit 29a63c4

Browse files
committed
Adding Dockerfile and updating Jenkinsfile
1 parent 65a261d commit 29a63c4

File tree

2 files changed

+8
-0
lines changed

2 files changed

+8
-0
lines changed

Dockerfile

+7
Original file line numberDiff line numberDiff line change
@@ -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

+1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ pipeline {
44
stage('Build'){
55
steps{
66
bat 'mvn clean package'
7+
bat "docker build . -t tomcatwebapp:${env.BUILD_ID}"
78
}
89
}
910
}

0 commit comments

Comments
 (0)