mirror of
https://github.com/danog/TelegramApiServer.git
synced 2024-11-26 20:04:45 +01:00
12 lines
298 B
Plaintext
12 lines
298 B
Plaintext
|
FROM xtrime/telegram-api-server:latest
|
||
|
|
||
|
ADD docker/php/conf.d/. "$PHP_INI_DIR/conf.d/"
|
||
|
|
||
|
RUN pecl install xdebug \
|
||
|
&& echo "" >> "$PHP_INI_DIR/conf.d/xdebug.ini" \
|
||
|
&& echo "zend_extension=xdebug.so" >> "$PHP_INI_DIR/conf.d/xdebug.ini"
|
||
|
|
||
|
EXPOSE 9503
|
||
|
EXPOSE 9003
|
||
|
|
||
|
ENTRYPOINT ["./entrypoint.sh"]
|