mirror of https://github.com/jetkvm/kvm.git
feat: add audio dependencies to Docker build context
Included the installation script for audio dependencies in the Docker build context preparation. This ensures that the necessary audio components are available during the build process.
This commit is contained in:
parent
14b741c3dd
commit
645b178d0d
|
|
@ -41,6 +41,7 @@ BUILD_IN_DOCKER=${BUILD_IN_DOCKER:-false}
|
||||||
function prepare_docker_build_context() {
|
function prepare_docker_build_context() {
|
||||||
msg_info "▶ Preparing docker build context ..."
|
msg_info "▶ Preparing docker build context ..."
|
||||||
cp .devcontainer/install-deps.sh \
|
cp .devcontainer/install-deps.sh \
|
||||||
|
.devcontainer/install_audio_deps.sh \
|
||||||
go.mod \
|
go.mod \
|
||||||
go.sum \
|
go.sum \
|
||||||
Dockerfile.build \
|
Dockerfile.build \
|
||||||
|
|
@ -103,4 +104,4 @@ function do_make() {
|
||||||
make "$@"
|
make "$@"
|
||||||
set +x
|
set +x
|
||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue