You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
162 B
10 lines
162 B
4 years ago
|
|
||
|
#添加docker镜像
|
||
|
FROM tomcat
|
||
|
|
||
|
#添加作者信息
|
||
|
MAINTAINER moshenglv@163.com
|
||
|
|
||
|
#复制应用程序
|
||
|
COPY target/demo-1.war /usr/local/tomcat/webapps/demo.war
|