mirror of
https://github.com/krateng/maloja.git
synced 2023-08-10 21:12:55 +03:00
15 lines
202 B
Docker
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
|