From ff4d1400f546ca1cc99586dcf31d3f1394ee9e33 Mon Sep 17 00:00:00 2001 From: Damir Ibragimov Date: Wed, 11 Sep 2024 12:27:07 +0300 Subject: [PATCH] Update testing/Dockerfile --- testing/Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/testing/Dockerfile b/testing/Dockerfile index bc81284..7cd47e0 100644 --- a/testing/Dockerfile +++ b/testing/Dockerfile @@ -1,6 +1,7 @@ FROM ubuntu:noble ENV DEBIAN_FRONTEND=noninteractive +ENV TZ=Europe/Moscow RUN \ apt update && \ @@ -21,6 +22,7 @@ RUN \ libfuse3-3 \ attr \ xattr && \ + dpkg-reconfigure -f noninteractive tzdata && \ apt autoremove --purge -y && \ apt clean -y && \ rm -rf /tmp/* @@ -29,6 +31,5 @@ ADD glusterfs-master.sh /docker/glusterfs-master.sh ADD glusterfs-node.sh /docker/glusterfs-node.sh EXPOSE 111 111/udp 24007 24009 49152 -ENV TZ=Europe/Moscow STOPSIGNAL SIGINT ENTRYPOINT ["tini", "--"]