Use forked repository
This commit is contained in:
parent
87f05f6220
commit
b3c299ffdc
1 changed files with 3 additions and 2 deletions
|
@ -3,15 +3,16 @@ FROM debian:buster
|
||||||
RUN \
|
RUN \
|
||||||
apt-get update \
|
apt-get update \
|
||||||
&& apt-get install --yes python3 git python3-pip libssl-dev libbz2-dev \
|
&& apt-get install --yes python3 git python3-pip libssl-dev libbz2-dev \
|
||||||
&& apt-get clean && rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/* \
|
|
||||||
&& pip3 install --no-cache-dir zeroc-ice \
|
&& pip3 install --no-cache-dir zeroc-ice \
|
||||||
|
&& apt-get purge --yes libssl-dev libbz2-dev \
|
||||||
|
&& 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
|
||||||
|
|
||||||
VOLUME ["/data"]
|
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