1
0
Fork 0

enable required extensions
continuous-integration/drone/push Build is failing Details

This commit is contained in:
Torma Kristóf 2024-04-04 21:16:07 +02:00
parent 56e97023e2
commit bd5ecb901a
1 changed files with 3 additions and 1 deletions

View File

@ -2,7 +2,9 @@ FROM php:8.2-fpm
COPY docker-php-entrypoint /usr/local/bin/
RUN chmod +x /usr/local/bin/docker-php-entrypoint
RUN chmod +x /usr/local/bin/docker-php-entrypoint && \
docker-php-ext-install mysqli mbstring xml openssl curl && \
docker-php-ext-enable mysqli mbstring xml openssl curl
USER www-data