Initial commit

This commit is contained in:
paul 2018-12-08 13:50:44 +01:00 committed by Hive
commit 8d31bf8340
3 changed files with 66 additions and 0 deletions

18
Dockerfile Normal file
View file

@ -0,0 +1,18 @@
FROM debian:stretch
MAINTAINER none
RUN \
apt-get update \
&& apt-get install --yes python git python-pip libssl-dev libbz2-dev \
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/* \
&& pip install zeroc-ice
ADD bin/start.sh /tmp/start.sh
RUN chmod 755 /tmp/start.sh
VOLUME ["/data"]
RUN git clone https://github.com/mumble-voip/mumo.git
WORKDIR /mumo
CMD ["/tmp/start.sh"]