mumble-moderator/Dockerfile

17 lines
465 B
Docker
Raw Normal View History

2024-02-13 20:20:05 +01:00
FROM debian:bookworm
2018-12-08 13:50:44 +01:00
RUN \
apt-get update \
&& apt-get install --yes --no-install-recommends -qq python3 git python3-daemon python3-zeroc-ice zeroc-ice-slice ca-certificates \
2020-08-16 22:45:51 +02:00
&& apt-get clean && rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/* \
2020-08-16 20:59:04 +02:00
&& useradd --system --no-create-home -U mumo
2018-12-08 13:50:44 +01:00
VOLUME ["/data"]
2020-08-16 20:59:04 +02:00
ADD bin/entrypoint.sh /entrypoint.sh
2024-02-13 20:20:05 +01:00
RUN git clone https://github.com/mumble-voip/mumo.git --depth 1
2018-12-08 13:50:44 +01:00
WORKDIR /mumo
2020-08-16 20:59:04 +02:00
CMD ["/entrypoint.sh"]