fixing jsonSchema validation by using zod
This commit is contained in:
21
docker/docker-bake.hcl
Normal file
21
docker/docker-bake.hcl
Normal file
@@ -0,0 +1,21 @@
|
||||
target "default" {
|
||||
context = ".."
|
||||
dockerfile = "docker/Dockerfile"
|
||||
platforms = ["linux/amd64", "linux/arm64"]
|
||||
tags = [
|
||||
"gds-mock-mcp:latest",
|
||||
"gds-mock-mcp:0.1.0"
|
||||
]
|
||||
}
|
||||
|
||||
target "amd64" {
|
||||
inherits = ["default"]
|
||||
platforms = ["linux/amd64"]
|
||||
tags = ["gds-mock-mcp:0.1.0-amd64"]
|
||||
}
|
||||
|
||||
target "arm64" {
|
||||
inherits = ["default"]
|
||||
platforms = ["linux/arm64"]
|
||||
tags = ["gds-mock-mcp:0.1.0-arm64"]
|
||||
}
|
||||
Reference in New Issue
Block a user