Update testing/Dockerfile

This commit is contained in:
2024-09-11 12:27:07 +03:00
parent 6f8c6865cf
commit ff4d1400f5

View File

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