20 lines
682 B
Docker
20 lines
682 B
Docker
FROM php:8.3-fpm-alpine
|
|
|
|
COPY --from=mlocati/php-extension-installer /usr/bin/install-php-extensions /usr/local/bin/
|
|
COPY --from=composer:latest /usr/bin/composer /usr/bin/composer
|
|
|
|
RUN install-php-extensions bcmath intl zip sockets pdo_mysql xdebug;
|
|
|
|
# XDebug
|
|
RUN echo "xdebug.mode=debug" >> $PHP_INI_DIR/conf.d/docker-php-ext-xdebug.ini && \
|
|
echo "xdebug.discover_client_host=On" >> $PHP_INI_DIR/conf.d/docker-php-ext-xdebug.ini;
|
|
|
|
# Timezone
|
|
RUN ln -snf /usr/share/zoneinfo/Europe/Warsaw /etc/localtime && \
|
|
echo "date.timezone = Europe/Warsaw" >> /usr/local/etc/php/conf.d/datetime.ini;
|
|
|
|
WORKDIR /var/www
|
|
|
|
ENTRYPOINT ["/var/www/bin/docker-entrypoint.sh"]
|
|
CMD ["php-fpm"]
|