f573ba4084
* Consolidate ED dockerbuild into CD nx workflow * Touch Dockerfile to convince CI to be happy
25 lines
880 B
JSON
25 lines
880 B
JSON
{
|
|
"$schema": "../../node_modules/nx/schemas/project-schema.json",
|
|
"projectType": "app",
|
|
"root": "apps/desktop",
|
|
"targets": {
|
|
"docker:build": {
|
|
"executor": "@nx-tools/nx-container:build",
|
|
"dependsOn": ["docker:prebuild"],
|
|
"options": {
|
|
"load": true,
|
|
"engine": "docker",
|
|
"platforms": ["linux/amd64", "linux/arm64"],
|
|
"provenance": "true",
|
|
"sbom": true,
|
|
"context": "apps/desktop",
|
|
"file": "apps/desktop/dockerbuild/Dockerfile",
|
|
"metadata": {
|
|
"images": ["ghcr.io/element-hq/element-web/desktop-build-env"],
|
|
"tags": ["type=ref,event=branch", "type=raw,enable={{is_default_branch}},value=$PLAYWRIGHT_VERSION"]
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|