mirror of
https://github.com/Icinga/docker-icingaweb2.git
synced 2025-08-06 22:37:17 +02:00
There's no need for it and it breaks with current nightlies due to requiring Composer 2 while our Docker images only have version 1 at the moment.
14 lines
247 B
Bash
Executable File
14 lines
247 B
Bash
Executable File
#!/bin/bash
|
|
# Icinga Web 2 Docker image | (c) 2020 Icinga GmbH | GPLv2+
|
|
set -exo pipefail
|
|
|
|
for d in icingaweb2 icingaweb2/modules/*; do
|
|
pushd "$d"
|
|
|
|
if [ -e composer.json ]; then
|
|
composer install --no-dev --ignore-platform-reqs
|
|
fi
|
|
|
|
popd
|
|
done
|