Skip to content

Commit

Permalink
bugfix Jenkinsfile
Browse files Browse the repository at this point in the history
  • Loading branch information
rauner committed Mar 19, 2024
1 parent a3dfc66 commit 0a0ec93
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,9 @@ pipeline {
}
script {
if (environment == "live") {
app = docker.build("chat-bot", "-f docker/main.dockerfile --build-arg ENVIRONMENT=${environment} --build-arg .")
app = docker.build("chat-bot", "-f docker/main.dockerfile --build-arg ENVIRONMENT=${environment}")
} else {
app = docker.build("chat-bot", "-f docker/dev.dockerfile --build-arg ENVIRONMENT=${environment} --build-arg .")
app = docker.build("chat-bot", "-f docker/dev.dockerfile --build-arg ENVIRONMENT=${environment}")
}
}
}
Expand Down

0 comments on commit 0a0ec93

Please sign in to comment.