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

15 lines
202 B
Docker

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