16 lines
465 B
Docker
16 lines
465 B
Docker
FROM debian:bookworm
|
|
|
|
RUN \
|
|
apt-get update \
|
|
&& apt-get install --yes --no-install-recommends -qq python3 git python3-daemon python3-zeroc-ice zeroc-ice-slice ca-certificates \
|
|
&& apt-get clean && rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/* \
|
|
&& useradd --system --no-create-home -U mumo
|
|
|
|
VOLUME ["/data"]
|
|
|
|
ADD bin/entrypoint.sh /entrypoint.sh
|
|
|
|
RUN git clone https://github.com/mumble-voip/mumo.git --depth 1
|
|
|
|
WORKDIR /mumo
|
|
CMD ["/entrypoint.sh"]
|