This commit is contained in:
fencl
2024-01-02 12:54:03 +01:00
parent 934164544e
commit 11f54265c4
521 changed files with 0 additions and 67197 deletions

View File

@@ -1,21 +0,0 @@
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
COPY adf/saveData.php /var/www/html/saveData.php
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
RUN docker-php-ext-install mysqli pdo pdo_mysql
EXPOSE 80