Files
crypto/frontend/PHP.Dockerfile

8 lines
139 B
Docker
Raw Normal View History

2021-06-28 23:15:13 -04:00
FROM php:7.4-fpm
RUN docker-php-ext-install pdo pdo_mysql
RUN pecl install xdebug && docker-php-ext-enable xdebug
WORKDIR /app/frontend