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

14 lines
178 B
Docker
Raw Normal View History

2020-01-21 17:09:52 +03:00
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