Skip to content

Commit

Permalink
Update docker image fallback name
Browse files Browse the repository at this point in the history
  • Loading branch information
jirkavrba committed May 24, 2024
1 parent 4fcf0c7 commit 879281f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -40,11 +40,11 @@ java {

tasks {
dockerBuild {
images = listOf("${System.getenv("DOCKER_IMAGE") ?: project.name}:latest")
images = listOf("${System.getenv("DOCKER_IMAGE") ?: "ghcr.io/jirkavrba/slack-tenor-bot"}:latest")
}

dockerBuildNative {
images = listOf("${System.getenv("DOCKER_IMAGE") ?: project.name}:latest")
images = listOf("${System.getenv("DOCKER_IMAGE") ?: "ghcr.io/jirkavrba/slack-tenor-bot"}:latest")
}
}

Expand Down

0 comments on commit 879281f

Please sign in to comment.