Skip to content

Commit

Permalink
build($Docker): build Docker image when it's Maven install
Browse files Browse the repository at this point in the history
BREAKING CHANGE: build Docker image when it's Maven install
  • Loading branch information
johnnymillergh committed Dec 5, 2020
1 parent 9342aa9 commit 93ec60d
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion api-portal/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
<!-- Bind `jib:dockerBuild` to a Maven lifecycle `package`. Jib will build your image directly to a Docker daemon. -->
<execution>
<id>buildDockerImagePhase</id>
<phase>package</phase>
<phase>install</phase>
<goals>
<goal>dockerBuild</goal>
</goals>
Expand Down
2 changes: 1 addition & 1 deletion auth-center/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
<!-- Bind `jib:dockerBuild` to a Maven lifecycle `package`. Jib will build your image directly to a Docker daemon. -->
<execution>
<id>buildDockerImagePhase</id>
<phase>package</phase>
<phase>install</phase>
<goals>
<goal>dockerBuild</goal>
</goals>
Expand Down
2 changes: 1 addition & 1 deletion exercise-mis/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
<!-- Bind `jib:dockerBuild` to a Maven lifecycle `package`. Jib will build your image directly to a Docker daemon. -->
<execution>
<id>buildDockerImagePhase</id>
<phase>package</phase>
<phase>install</phase>
<goals>
<goal>dockerBuild</goal>
</goals>
Expand Down
2 changes: 1 addition & 1 deletion gateway/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
<!-- Bind `jib:dockerBuild` to a Maven lifecycle `package`. Jib will build your image directly to a Docker daemon. -->
<execution>
<id>buildDockerImagePhase</id>
<phase>package</phase>
<phase>install</phase>
<goals>
<goal>dockerBuild</goal>
</goals>
Expand Down
2 changes: 1 addition & 1 deletion muscle-mis/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
<!-- Bind `jib:dockerBuild` to a Maven lifecycle `package`. Jib will build your image directly to a Docker daemon. -->
<execution>
<id>buildDockerImagePhase</id>
<phase>package</phase>
<phase>install</phase>
<goals>
<goal>dockerBuild</goal>
</goals>
Expand Down
2 changes: 1 addition & 1 deletion service-registry/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
<!-- Bind `jib:dockerBuild` to a Maven lifecycle `package`. Jib will build your image directly to a Docker daemon. -->
<execution>
<id>buildDockerImagePhase</id>
<phase>package</phase>
<phase>install</phase>
<goals>
<goal>dockerBuild</goal>
</goals>
Expand Down
2 changes: 1 addition & 1 deletion spring-boot-admin/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
<!-- Bind `jib:dockerBuild` to a Maven lifecycle `package`. Jib will build your image directly to a Docker daemon. -->
<execution>
<id>buildDockerImagePhase</id>
<phase>package</phase>
<phase>install</phase>
<goals>
<goal>dockerBuild</goal>
</goals>
Expand Down

0 comments on commit 93ec60d

Please sign in to comment.