fix some stuff
All checks were successful
build / build (push) Successful in 3m54s

This commit is contained in:
Constantin Simonis 2024-12-04 18:24:35 +01:00
parent edb59e3753
commit d892ffed34
Signed by: csimonis
GPG Key ID: 3878FF77C24AF4D2
2 changed files with 2 additions and 2 deletions

View File

@ -6,8 +6,6 @@
<Directory /var/www/project/public> <Directory /var/www/project/public>
AllowOverride All AllowOverride All
Order Allow,Deny
Require all granted
<IfModule mod_rewrite.c> <IfModule mod_rewrite.c>
RewriteEngine On RewriteEngine On
</IfModule> </IfModule>

View File

@ -3,6 +3,8 @@ FROM php:8.2-apache
COPY . /var/www/project/ COPY . /var/www/project/
COPY ./.docker/hosts/file-explorer.conf /etc/apache2/sites-enabled/file-explorer.conf COPY ./.docker/hosts/file-explorer.conf /etc/apache2/sites-enabled/file-explorer.conf
RUN chown -R www-data:www-data /var/www/project
RUN apt-get update \ RUN apt-get update \
&& apt-get install -qq -y --no-install-recommends cron nano locales coreutils libicu-dev libpng-dev libxml2-dev libzip-dev libonig-dev libxslt-dev; && apt-get install -qq -y --no-install-recommends cron nano locales coreutils libicu-dev libpng-dev libxml2-dev libzip-dev libonig-dev libxslt-dev;