Add Dockerfile support

This commit is contained in:
Marco Aceti 2020-01-21 15:09:52 +01:00
parent fb55944147
commit 98d80d3d11
No known key found for this signature in database
GPG Key ID: E4ABA81298E4F14D
1 changed files with 13 additions and 0 deletions

13
Dockerfile Normal file
View File

@ -0,0 +1,13 @@
FROM python:slim
WORKDIR /usr/src/app
COPY . .
RUN apt-get update -y
RUN apt-get install gcc -y
RUN pip3 install -r requirements.txt
EXPOSE 42010
ENTRYPOINT ./maloja start