The build log shows that the “Linux Voice Assistant” add‑on failed to build because of two problems in the Dockerfile:
1. Invalid base image argument – The Dockerfile uses an ARG in the FROM line without supplying a default value. Docker’s build‑checks require that ARG values used in a FROM statement resolve to a valid image even if no build arguments are passed . Since the add‑on’s BUILD_FROM argument is not defined, the build fails with InvalidDefaultArgInFrom.
2. Non‑executable setup script – Later in the build, the Dockerfile tries to run ./script/setup, but only script/run is made executable. Because script/setup isn’t marked executable, the build dies with Permission denied.
The build log shows that the “Linux Voice Assistant” add‑on failed to build because of two problems in the Dockerfile:
1. Invalid base image argument – The Dockerfile uses an ARG in the FROM line without supplying a default value. Docker’s build‑checks require that ARG values used in a FROM statement resolve to a valid image even if no build arguments are passed . Since the add‑on’s BUILD_FROM argument is not defined, the build fails with InvalidDefaultArgInFrom.
2. Non‑executable setup script – Later in the build, the Dockerfile tries to run ./script/setup, but only script/run is made executable. Because script/setup isn’t marked executable, the build dies with Permission denied.