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", "--"]