add dockerfile
This commit is contained in:
parent
9163c865a7
commit
87f5017920
|
@ -0,0 +1,11 @@
|
||||||
|
FROM python:3.9
|
||||||
|
|
||||||
|
WORKDIR /app
|
||||||
|
|
||||||
|
COPY src/requirements.txt ./
|
||||||
|
RUN pip install -r requirements.txt
|
||||||
|
|
||||||
|
COPY src /app
|
||||||
|
|
||||||
|
EXPOSE 4876
|
||||||
|
CMD [ "python", "server.py" ]
|
Loading…
Reference in New Issue