Add Dockerfile

This commit is contained in:
victorc 2024-09-26 10:02:03 +00:00
commit 9af1a76095

8
Dockerfile Normal file
View File

@ -0,0 +1,8 @@
FROM php:8.1-apache
# Install MySQL extensions
RUN apt-get update && apt-get install -y \
libzip-dev \
&& docker-php-ext-install mysqli pdo pdo_mysql \
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/*