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

15 lines
202 B
Docker
Raw Normal View History

2020-01-21 17:09:52 +03:00
FROM python:slim
WORKDIR /usr/src/app
RUN apt-get update -y
RUN apt-get install gcc -y
2020-01-21 17:27:27 +03:00
COPY requirements.txt .
2020-01-21 17:09:52 +03:00
RUN pip3 install -r requirements.txt
EXPOSE 42010
2020-01-21 17:27:27 +03:00
COPY . .
2020-01-21 17:09:52 +03:00
ENTRYPOINT ./maloja start