mirror of
https://github.com/alchemy-fr/Phraseanet.git
synced 2025-10-14 13:33:14 +00:00
19 lines
388 B
Plaintext
19 lines
388 B
Plaintext
ARG phraseanet
|
|
FROM $phraseanet
|
|
|
|
RUN apt-get update \
|
|
&& apt-get install -y --no-install-recommends \
|
|
iproute2 \
|
|
&& rm -rf /var/lib/apt/lists/* \
|
|
&& pecl install xdebug \
|
|
&& docker-php-ext-enable xdebug \
|
|
&& pecl clear-cache
|
|
|
|
ADD ./docker/phraseanet-debug/ /
|
|
|
|
RUN chmod +x /entrypoint.sh /usr/local/bin/docker-*
|
|
|
|
ENTRYPOINT ["/entrypoint.sh"]
|
|
|
|
CMD ["php-fpm"]
|