Files
bogazici-api/docker/entrypoint.sh
2026-03-27 10:41:54 +03:00

14 lines
256 B
Bash
Executable File

#!/bin/bash
set -e
cd /var/www/html
if [ ! -d "vendor" ]; then
composer install --no-interaction --prefer-dist --optimize-autoloader
fi
chown -R www-data:www-data storage bootstrap/cache
chmod -R 775 storage bootstrap/cache
exec apache2-foreground