adding server code

This commit is contained in:
Janis Steiner
2024-01-14 11:48:31 +00:00
parent c3f3fb85af
commit 343720365a
5 changed files with 140 additions and 0 deletions

View File

@@ -0,0 +1,7 @@
# Extend the official PHP image
FROM php:apache
# Install the mysqli extension
RUN docker-php-ext-install mysqli
RUN a2enmod ssl
RUN service apache2 restart