create php fpm docker file

This commit is contained in:
2025-12-13 23:46:18 +03:30
parent 14c689f058
commit fe23dfb27a

9
docker/php/Dockerfile Normal file
View File

@@ -0,0 +1,9 @@
# PHP-FPM runtime
FROM php:8.5-rc-fpm-alpine3.23
WORKDIR /var/www/html
# Install any PHP extensions you need
# RUN docker-php-ext-install pdo_mysql
# Expose port 9000 (default for php-fpm)
EXPOSE 9000