mirror of
https://github.com/krateng/maloja.git
synced 2023-08-10 21:12:55 +03:00
Add Dockerfile support
This commit is contained in:
parent
fb55944147
commit
98d80d3d11
13
Dockerfile
Normal file
13
Dockerfile
Normal file
@ -0,0 +1,13 @@
|
||||
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
|
Loading…
Reference in New Issue
Block a user