Open jabrena opened 1 year ago
<!-- Jib --> <plugin> <groupId>com.google.cloud.tools</groupId> <artifactId>jib-maven-plugin</artifactId> <version>${jib-maven-plugin.version}</version> <configuration> <container> <ports> <port>8080</port> </ports> </container> <from> <image>LATEST-IMAGE</image> </from> <to> <image>jabrena/bla-bla-bla:${project.version}</image> </to> </configuration> <executions> <execution> <phase>package</phase> <goals> <goal>build</goal> </goals> </execution> </executions> </plugin>