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

6 lines
140 B
Docker

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