Skip to content

Commit

Permalink
feat: Update file system
Browse files Browse the repository at this point in the history
  • Loading branch information
dinushchathurya committed Jul 9, 2023
1 parent c09bc82 commit c73b5d2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -53,14 +53,14 @@ jib {
image = "gcr.io/distroless/java:11"
}
to {
image = "registry.hub.docker.com/limarktest/${project.name}:${project.version}"
image = "docker.io/limarktest/${project.name}:${project.version}"
}
}

task dockerPush {
doLast {
exec {
commandLine 'docker', 'push', "registry.hub.docker.com/limarktest/${project.name}:${project.version}"
commandLine 'docker', 'push', "docker.io/limarktest/${project.name}:${project.version}"
}
}
}

0 comments on commit c73b5d2

Please sign in to comment.