ManusSpaceAGI / docker-bake.hcl
likhonsheikh's picture
Create docker-bake.hcl
d6e2e97 verified
raw
history blame contribute delete
592 Bytes
group "default" {
targets = ["frontend", "backend", "sandbox"]
}
target "frontend" {
context = "./frontend"
dockerfile = "Dockerfile"
tags = ["likhonsheikh/manusspaceagi-frontend:latest"]
platforms = ["linux/amd64", "linux/arm64"]
}
target "backend" {
context = "./backend"
dockerfile = "Dockerfile"
tags = ["likhonsheikh/manusspaceagi-backend:latest"]
platforms = ["linux/amd64", "linux/arm64"]
}
target "sandbox" {
context = "./sandbox"
dockerfile = "Dockerfile"
tags = ["likhonsheikh/manusspaceagi-sandbox:latest"]
platforms = ["linux/amd64", "linux/arm64"]
}