diff --git a/docker/exporter/Dockerfile b/docker/exporter/Dockerfile index 27b6da2..0eb23b8 100644 --- a/docker/exporter/Dockerfile +++ b/docker/exporter/Dockerfile @@ -15,7 +15,7 @@ RUN ${PACKAGER} -y install --nodocs \ make \ && ${PACKAGER} -y clean all ; -RUN wget https://go.dev/dl/go1.25.7.linux-amd64.tar.gz && tar -xzf go1.25.7.linux-amd64.tar.gz && mv go /usr/local +RUN wget https://go.dev/dl/go1.26.1.linux-amd64.tar.gz && tar -xzf go1.26.1.linux-amd64.tar.gz && mv go /usr/local ENV PATH=$PATH:/usr/local/go/bin RUN git clone https://github.com/prometheus-community/postgres_exporter.git && cd postgres_exporter && make build; diff --git a/docker/postgres-gis/Dockerfile b/docker/postgres-gis/Dockerfile index aaad2c1..852cf81 100644 --- a/docker/postgres-gis/Dockerfile +++ b/docker/postgres-gis/Dockerfile @@ -69,7 +69,7 @@ ENV PATHBACKUP = $PATH RUN wget https://smarden.org/runit/runit-2.3.0.tar.gz -P /package/ COPY cron_unprivileged.c /package/ -RUN pip3 install PyYAML setuptools pystache loader kazoo meld3 boto3 python-etcd psutil requests cdiff ydiff==1.4.2 --upgrade \ +RUN pip3 install PyYAML setuptools pystache loader kazoo meld3 boto3 python-etcd psutil requests cdiff ydiff==1.4.2 python-json-logger --upgrade \ && if [[ $PATRONI_VERSION == "multisite-"* ]]; then \ git clone -b $PATRONI_VERSION https://github.com/cybertec-postgresql/patroni; \ pip3 install ./patroni[kubernetes,etcd,etcd3]; \ diff --git a/docker/postgres/Dockerfile b/docker/postgres/Dockerfile index fd36c89..1fda351 100644 --- a/docker/postgres/Dockerfile +++ b/docker/postgres/Dockerfile @@ -67,7 +67,7 @@ ENV PATHBACKUP = $PATH RUN wget https://smarden.org/runit/runit-2.3.0.tar.gz -P /package/ COPY cron_unprivileged.c /package/ -RUN pip3 install PyYAML setuptools pystache loader kazoo meld3 boto3 python-etcd psutil requests cdiff ydiff==1.4.2 --upgrade \ +RUN pip3 install PyYAML setuptools pystache loader kazoo meld3 boto3 python-etcd psutil requests cdiff ydiff==1.4.2 python-json-logger --upgrade \ && if [[ $PATRONI_VERSION == "multisite-"* ]]; then \ git clone -b $PATRONI_VERSION https://github.com/cybertec-postgresql/patroni; \ pip3 install ./patroni[kubernetes,etcd,etcd3]; \