Skip to content

Commit

Permalink
Fix docker-publish-release docker bake (#772)
Browse files Browse the repository at this point in the history
  • Loading branch information
pschork committed Sep 24, 2024
1 parent 4a22a7a commit 68bf132
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions docker-bake.hcl
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
# VARIABLES
variable "REGISTRY" {
default = "ghcr.io/layr-labs/eigenda"
default = "ghcr.io"
}

variable "REPO" {
default = "layr-labs/eigenda"
}

variable "BUILD_TAG" {
Expand Down Expand Up @@ -126,11 +130,11 @@ target "_release" {

target "node-release" {
inherits = ["node", "_release"]
tags = ["${REGISTRY}/opr-node:${BUILD_TAG}"]
tags = ["${REGISTRY}/${REPO}/opr-node:${BUILD_TAG}"]
}

target "nodeplugin-release" {
inherits = ["nodeplugin", "_release"]
tags = ["${REGISTRY}/opr-nodeplugin:${BUILD_TAG}"]
tags = ["${REGISTRY}/${REPO}/opr-nodeplugin:${BUILD_TAG}"]
}

0 comments on commit 68bf132

Please sign in to comment.