dockerize project #3

Merged
csimonis merged 40 commits from feature/build into main 2024-12-04 17:37:10 +00:00
2 changed files with 2 additions and 2 deletions
Showing only changes of commit d892ffed34 - Show all commits

View File

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

View File

@ -3,6 +3,8 @@ FROM php:8.2-apache
COPY . /var/www/project/
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 \
&& apt-get install -qq -y --no-install-recommends cron nano locales coreutils libicu-dev libpng-dev libxml2-dev libzip-dev libonig-dev libxslt-dev;