Compare commits
No commits in common. "56bb7d5a147bc79324d4acc419f2a1fda2709cb2" and "2f650d1a99dd0d1e5db95302d996d1f82d530353" have entirely different histories.
56bb7d5a14
...
2f650d1a99
1 changed files with 6 additions and 3 deletions
|
@ -1,8 +1,11 @@
|
||||||
FROM debian:bookworm
|
FROM debian:buster
|
||||||
|
|
||||||
RUN \
|
RUN \
|
||||||
apt-get update \
|
apt-get update \
|
||||||
&& apt-get install --yes --no-install-recommends -qq python3 git python3-daemon python3-zeroc-ice zeroc-ice-slice \
|
&& apt-get install --yes -qq python3 git python3-pip libssl-dev libbz2-dev \
|
||||||
|
&& pip3 install --no-cache-dir zeroc-ice python-daemon \
|
||||||
|
&& apt-get purge --yes libssl-dev libbz2-dev python3-pip \
|
||||||
|
&& apt-get autoremove --yes \
|
||||||
&& apt-get clean && rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/* \
|
&& apt-get clean && rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/* \
|
||||||
&& useradd --system --no-create-home -U mumo
|
&& useradd --system --no-create-home -U mumo
|
||||||
|
|
||||||
|
@ -10,7 +13,7 @@ VOLUME ["/data"]
|
||||||
|
|
||||||
ADD bin/entrypoint.sh /entrypoint.sh
|
ADD bin/entrypoint.sh /entrypoint.sh
|
||||||
|
|
||||||
RUN git clone https://github.com/mumble-voip/mumo.git --depth 1
|
RUN git clone https://github.com/ailox/mumo.git --depth 1
|
||||||
|
|
||||||
WORKDIR /mumo
|
WORKDIR /mumo
|
||||||
CMD ["/entrypoint.sh"]
|
CMD ["/entrypoint.sh"]
|
||||||
|
|
Loading…
Reference in a new issue