likhonsheikh commited on
Commit
d6e2e97
·
verified ·
1 Parent(s): e222f57

Create docker-bake.hcl

Browse files
Files changed (1) hide show
  1. docker-bake.hcl +24 -0
docker-bake.hcl ADDED
@@ -0,0 +1,24 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ group "default" {
2
+ targets = ["frontend", "backend", "sandbox"]
3
+ }
4
+
5
+ target "frontend" {
6
+ context = "./frontend"
7
+ dockerfile = "Dockerfile"
8
+ tags = ["likhonsheikh/manusspaceagi-frontend:latest"]
9
+ platforms = ["linux/amd64", "linux/arm64"]
10
+ }
11
+
12
+ target "backend" {
13
+ context = "./backend"
14
+ dockerfile = "Dockerfile"
15
+ tags = ["likhonsheikh/manusspaceagi-backend:latest"]
16
+ platforms = ["linux/amd64", "linux/arm64"]
17
+ }
18
+
19
+ target "sandbox" {
20
+ context = "./sandbox"
21
+ dockerfile = "Dockerfile"
22
+ tags = ["likhonsheikh/manusspaceagi-sandbox:latest"]
23
+ platforms = ["linux/amd64", "linux/arm64"]
24
+ }