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