Some checks failed
Vulhub Format Check and Lint / format-check (push) Has been cancelled
Vulhub Format Check and Lint / markdown-check (push) Has been cancelled
Vulhub Docker Image CI / longtime-images-test (push) Has been cancelled
Vulhub Docker Image CI / images-test (push) Has been cancelled
19 lines
701 B
Docker
19 lines
701 B
Docker
FROM php:7.4-apache
|
|
|
|
LABEL maintainer="phithon <root@leavesongs.com>"
|
|
|
|
RUN set -ex \
|
|
&& apt-get update \
|
|
&& apt-get install -y --no-install-recommends rrdtool snmp wget ca-certificates libsnmp-dev default-mysql-client \
|
|
wait-for-it libjpeg62-turbo-dev libpng-dev libfreetype6-dev libgmp-dev libldap2-dev
|
|
|
|
RUN set -ex \
|
|
&& docker-php-ext-configure gd --with-freetype --with-jpeg \
|
|
&& docker-php-ext-install pdo_mysql snmp gmp ldap sockets gd
|
|
|
|
RUN set -ex \
|
|
&& wget -qO- https://files.cacti.net/cacti/linux/cacti-1.2.22.tar.gz | tar zx -C /var/www/html --strip-components 1
|
|
|
|
COPY config.php /var/www/html/include/config.php
|
|
COPY cacti.ini /usr/local/etc/php/conf.d/cacti.ini
|