add dockerfile

This commit is contained in:
qvalentin 2021-08-29 19:14:37 +02:00
parent 9163c865a7
commit 87f5017920
1 changed files with 11 additions and 0 deletions

11
Dockerfile Normal file
View File

@ -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" ]