Add initial Drone CI configuration, .gitignore, and Dockerfile

This commit is contained in:
fencl
2025-09-01 20:27:18 +02:00
parent ba92b8a815
commit c860e1962f
3 changed files with 58 additions and 0 deletions

22
Dockerfile Normal file
View File

@@ -0,0 +1,22 @@
#FROM php:8.0-apache
FROM --platform=linux/amd64 php:8.4-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