Files
zabbix-server-pgsql/Dockerfile
damage ae7f6cc700
All checks were successful
ci/woodpecker/manual/woodpecker Pipeline was successful
ci/woodpecker/cron/woodpecker Pipeline was successful
add mibs
2025-08-17 19:12:38 +02:00

15 lines
384 B
Docker

FROM zabbix/zabbix-server-pgsql:ubuntu-7.0-latest
USER root
RUN set -eux && \
apt-get -y update && \
DEBIAN_FRONTEND=noninteractive apt-get -y --no-install-recommends install python3 python3-requests snmp-mibs-downloader && \
ln -s /usr/bin/python3 /usr/bin/python && \
apt-get -y autoremove && \
apt-get -y clean && \
rm -rf /var/lib/apt/lists/*
RUN download-mibs
USER 1997