Files
ma/src/server/srv_dockerfile
2024-01-14 11:48:31 +00:00

8 lines
158 B
Plaintext

# 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