switch to version 5.0 LTS

This commit is contained in:
root 2021-04-11 18:16:38 +02:00
parent 655433aea6
commit 4ea8838fb6

View File

@ -1,5 +1,6 @@
FROM zabbix/zabbix-server-pgsql:ubuntu-4.4.6 FROM zabbix/zabbix-server-pgsql:ubuntu-5.0-latest
USER root
RUN set -eux && \ RUN set -eux && \
apt-get -y update && \ apt-get -y update && \
DEBIAN_FRONTEND=noninteractive apt-get -y --no-install-recommends install python3 python3-requests && \ DEBIAN_FRONTEND=noninteractive apt-get -y --no-install-recommends install python3 python3-requests && \
@ -7,3 +8,5 @@ RUN set -eux && \
apt-get -y autoremove && \ apt-get -y autoremove && \
apt-get -y clean && \ apt-get -y clean && \
rm -rf /var/lib/apt/lists/* rm -rf /var/lib/apt/lists/*
USER 1997