This commit is contained in:
howard
2023-04-06 10:13:21 +02:00
commit 132b735d79
35 changed files with 2328 additions and 0 deletions

18
Dockerfile Normal file
View File

@@ -0,0 +1,18 @@
FROM php:8.0-apache
WORKDIR /var/www/html
#COPY index.php index.php
RUN mkdir /app
COPY vhost.conf /etc/apache2/sites-available/000-default.conf
WORKDIR /app
COPY . .
# ADD extras/dockerstart.sh /usr/local/servicemix/bin/
# RUN chmod 755 /usr/local/bin/dockerstart.sh
RUN chown -R www-data:www-data /app && a2enmod rewrite
EXPOSE 80