You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+7-1Lines changed: 7 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -102,14 +102,20 @@ Use the `image-from-tool` mode when you already have an image generated by Image
102
102
make build MODE=image-from-tool ICT_IMG=/absolute/path/to/minimal-desktop-ubuntu-24.04.raw.gz
103
103
```
104
104
105
+
`ICT_IMG` may point to any readable file on the host (absolute or relative to `$PWD`); it does not have to live inside the repository. `make` resolves the path, bind-mounts the containing directory read-only into the build container, and stages the image into `infrastructure/build-artifacts/` for packaging.
106
+
105
107
The following are the supported Image Composer Tool image extensions:
106
108
-`.raw.gz`
107
109
-`.raw.img.gz`
108
110
109
-
Example:
111
+
Examples:
110
112
111
113
```bash
114
+
# Absolute path anywhere on the host
112
115
make build MODE=image-from-tool ICT_IMG=/home/user/images/minimal-desktop-ubuntu-24.04.raw.gz
116
+
117
+
# Path relative to the repository root
118
+
make build MODE=image-from-tool ICT_IMG=./minimal-desktop-ubuntu-24.04.raw.gz
0 commit comments