This repository has been archived on 2023-08-15. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
docker-stuff/php/Dockerfile
2021-09-22 10:38:02 +00:00

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