mirror of
https://github.com/ClusterCockpit/cc-docker.git
synced 2024-11-10 14:47:24 +01:00
13 lines
352 B
Bash
13 lines
352 B
Bash
|
#!/usr/bin/env bash
|
||
|
|
||
|
git clone https://github.com/ClusterCockpit/ClusterCockpit.git /var/www/symfony/.
|
||
|
cd /var/www/symfony
|
||
|
git checkout feature-47-introduce-graphql-api
|
||
|
composer install --no-dev --optimize-autoloader
|
||
|
yarn install
|
||
|
yarn encore production
|
||
|
# bin/console doc:mig:mig --no-interaction
|
||
|
# bin/console doc:fix:load --no-interaction
|
||
|
|
||
|
exec "$@"
|