Docker & adding travis

This commit is contained in:
Azlux
2020-07-16 22:08:54 +02:00
parent e595ea861b
commit 158731b3fa
5 changed files with 64 additions and 0 deletions

16
Dockerfile Normal file
View File

@@ -0,0 +1,16 @@
FROM python:2
RUN pip install --no-cache-dir zeroc-ice
COPY entrypoint.sh /entrypoint.sh
COPY . /mumo
RUN chmod +x /entrypoint.sh && \
ln -sf /dev/stdout /mumo/mumo.log
VOLUME ["/data"]
WORKDIR /mumo
ENTRYPOINT [ "/entrypoint.sh" ]
CMD ["/mumo/mumo.py", "--ini", "/data/mumo.ini"]