Files
alexr_teste/docker/php/Dockerfile

11 lines
189 B
Docker

FROM php:8.4-apache
RUN apt-get update && apt-get install -y \
git \
unzip \
nano \
&& docker-php-ext-install pdo pdo_mysql \
&& a2enmod rewrite
WORKDIR /var/www/html