This repository has been archived on 2023-08-15. You can view files and clone it, but cannot push or open issues or pull requests.
docker-stuff/php/Dockerfile

7 lines
140 B
Text
Raw Permalink Normal View History

2021-09-22 10:38:02 +00:00
FROM php:fpm
RUN apt update -y
RUN apt install -y zlib1g-dev libpng-dev
RUN docker-php-ext-install gd
RUN docker-php-ext-install pdo_mysql