13 lines
556 B
Docker
13 lines
556 B
Docker
# NAME leenooks/php
|
|
# VERSION 7.3-fpm-ext
|
|
|
|
FROM registry.leenooks.net/leenooks/php:7.3-fpm-plus
|
|
|
|
RUN echo "deb http://deb.debian.org/debian buster non-free" >> /etc/apt/sources.list.d/non-free.list && apt-get update \
|
|
&& apt-get install -y wkhtmltopdf mariadb-client-10.3 inetutils-ping fping pkg-config \
|
|
libsnmp-dev snmp-mibs-downloader --no-install-recommends \
|
|
&& strip --remove-section=.note.ABI-tag /usr/lib/x86_64-linux-gnu/libQt5Core.so.5 \
|
|
&& download-mibs \
|
|
&& docker-php-ext-install -j$(nproc) snmp \
|
|
&& rm -rf /var/lib/apt/lists/* /tmp/*
|