This commit is contained in:
paul 2020-08-16 20:59:04 +02:00
parent 8d31bf8340
commit 87f05f6220
2 changed files with 11 additions and 11 deletions

View file

@ -1,18 +1,17 @@
FROM debian:stretch
MAINTAINER none
FROM debian:buster
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
&& 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 \
&& useradd --system --no-create-home -U mumo
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
ADD bin/entrypoint.sh /entrypoint.sh
RUN git clone https://github.com/mumble-voip/mumo.git --depth 1
WORKDIR /mumo
CMD ["/tmp/start.sh"]
CMD ["/entrypoint.sh"]

3
bin/start.sh → bin/entrypoint.sh Normal file → Executable file
View file

@ -22,4 +22,5 @@ cp -r /data/mumo.ini /mumo
cp -r /data/modules /mumo # TODO: Add from git
cp -r /data/modules-available /mumo
cp -r /data/modules-enabled /mumo
exec /mumo/mumo.py
exec su mumo -c "python3 /mumo/mumo.py"