cc-docker/php-fpm/entrypoint.sh
Jan Eitzinger dfa7a91648 Cleanup and fix inconsistencies.
Remove ping check for github.
2021-08-25 11:24:24 +02:00

27 lines
627 B
Bash
Executable File

#!/usr/bin/env bash
if [ "$APP_CLUSTERCOCKPIT_INIT" = true ]; then
rm -rf /var/www/symfony/* /var/www/symfony/.??*
git clone https://github.com/ClusterCockpit/ClusterCockpit .
if [ "$APP_ENV" = dev ]; then
git checkout develop
composer install --no-progress --optimize-autoloader
yarn install
yarn encore dev
else
composer install --no-dev --no-progress --optimize-autoloader
yarn install
yarn encore production
fi
ln -s /var/lib/job-archive var/job-archive
fi
# Reports php environment on container startup
php bin/console about
exec "$@"