-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproject.json
32 lines (32 loc) · 943 Bytes
/
project.json
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
26
27
28
29
30
31
32
{
"name": "deep-heating",
"$schema": "../../node_modules/nx/schemas/project-schema.json",
"sourceRoot": "packages/deep-heating/src",
"projectType": "application",
"targets": {
"docker": {
"executor": "@nx-tools/nx-container:build",
"dependsOn": ["deep-heating-web:build", "deep-heating-socketio:build"],
"options": {
"push": false,
"platforms": ["linux/amd64", "linux/arm64", "linux/arm/v7"],
"metadata": {
"images": [
"graemef/deep-heating",
"ghcr.io/graemef/home-automation/deep-heating"
],
"tags": [
"type=ref,event=branch",
"type=ref,event=tag",
"type=ref,event=pr",
"type=semver,pattern={{version}}",
"type=semver,pattern={{major}}.{{minor}}",
"type=semver,pattern={{major}}",
"type=sha"
]
}
}
}
},
"tags": []
}