first commit
This commit is contained in:
34
testing/Dockerfile
Normal file
34
testing/Dockerfile
Normal file
@@ -0,0 +1,34 @@
|
||||
FROM ubuntu:noble
|
||||
|
||||
ENV DEBIAN_FRONTEND=noninteractive
|
||||
|
||||
RUN \
|
||||
apt update && \
|
||||
apt install -y --no-install-recommends apt-utils && \
|
||||
apt install -y --no-install-recommends tzdata \
|
||||
ca-certificates \
|
||||
build-essential \
|
||||
tini && \
|
||||
apt install -y --no-install-recommends \
|
||||
dnsutils \
|
||||
net-tools \
|
||||
nano \
|
||||
glusterfs-server \
|
||||
glusterfs-client \
|
||||
glusterfs-cli \
|
||||
glusterfs-common \
|
||||
fuse3 \
|
||||
libfuse3-3 \
|
||||
attr \
|
||||
xattr && \
|
||||
apt autoremove --purge -y && \
|
||||
apt clean -y && \
|
||||
rm -rf /tmp/*
|
||||
|
||||
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", "--"]
|
||||
Reference in New Issue
Block a user