pom.xml中配置插件
<build>
<plugins>
<plugin>
<groupId>com.google.cloud.toolsgroupId>
<artifactId>jib-maven-pluginartifactId>
<version>2.6.0version>
<configuration>
<container>
<mainClass>qunar.tc.bistoury.ServersideApplicationmainClass>
<environment>
<spring.profiles.active>prospring.profiles.active>
environment>
<creationTime>USE_CURRENT_TIMESTAMPcreationTime>
container>
<from>
<image>openjdk:8-jdk-slimimage>
from>
<to>
<image>registry.cn-hangzhou.aliyuncs.com/19/serverside-uiimage>
<tags>
<tag>0.0.1tag>
tags>
to>
configuration>
plugin>
plugins>
build>
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
- 18
- 19
- 20
- 21
- 22
- 23
- 24
- 25
- 26
- 27
- 28
- 29
- 30
- 31
- 32
执行镜像构建命令
mvn package jib:dockerBuild -am