Skip to content

Commit

Permalink
feat: added sensible defaults and default platform
Browse files Browse the repository at this point in the history
  • Loading branch information
TimPietrusky committed Nov 18, 2024
1 parent 9a7ffdb commit 3f5162a
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions docker-bake.hcl
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
variable "DOCKERHUB_REPO" {
default = ""
default = "timpietruskyblibla"
}

variable "DOCKERHUB_IMG" {
default = ""
default = "runpod-worker-comfy"
}

variable "RELEASE_VERSION" {
default = ""
default = "latest"
}

variable "HUGGINGFACE_ACCESS_TOKEN" {
Expand All @@ -22,6 +22,7 @@ target "base" {
context = "."
dockerfile = "Dockerfile"
target = "base"
platforms = ["linux/amd64"]
tags = ["${DOCKERHUB_REPO}/${DOCKERHUB_IMG}:${RELEASE_VERSION}-base"]
}

Expand Down

0 comments on commit 3f5162a

Please sign in to comment.