Cleanup Added lobby menu and page items. fix for root redirect

This commit is contained in:
2025-09-03 22:49:27 +02:00
parent 6e212db8e1
commit eff5aafbdb
25 changed files with 148 additions and 65 deletions

View File

@@ -2,7 +2,7 @@ FROM php:8.3-apache
RUN apt-get update && apt-get install -y libpq-dev libzip-dev unzip libpng-dev libjpeg-dev libfreetype6-dev libicu-dev && \
docker-php-ext-install pdo_pgsql pgsql zip bcmath gd intl
RUN curl -sL https://deb.nodesource.com/setup_20.x | bash - && \
apt-get install -y nodejs
apt-get install -y nodejs npm
RUN php -r "copy('https://getcomposer.org/installer', 'composer-setup.php');" && \
php composer-setup.php --install-dir=/usr/local/bin --filename=composer && \
rm composer-setup.php