1
0
mirror of https://github.com/krateng/maloja.git synced 2023-08-10 21:12:55 +03:00

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

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