Sign inSign up

nas2docker/murmur-rest

By nas2docker

Updated over 6 years ago

Image
0

175

nas2docker/murmur-rest repository overview

Build from Dockerfile at https://github.com/alfg/murmur-rest as below

========================= FROM ubuntu:16.04

EXPOSE 5000

ENV DEBIAN_FRONTEND noninteractive

RUN apt-get update && apt-get install -y build-essential mumble-server supervisor

Build Python app

RUN apt-get install -y python python-pip python-zeroc-ice RUN pip install -U pip ADD requirements.txt /opt/requirements.txt RUN cd /opt && pip install -r requirements.txt

Add config files.

ADD ./etc/mumble-server.ini /etc/mumble-server.ini ADD ./etc/supervisord.conf /etc/supervisord.conf

Add app.

ADD . /opt

WORKDIR /opt RUN mv settings.py.example settings.py

Mumble ports.

EXPOSE 50000

CMD ["/usr/bin/supervisord"]

Tag summary

Content type

Image

Digest

Size

208.2 MB

Last updated

over 6 years ago

docker pull nas2docker/murmur-rest