Spaces:
Running
Running
File size: 592 Bytes
d6e2e97 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 |
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"]
}
|