Implement Dockerfile for python worker (3.2.2)

This commit is contained in:
Tobias Eidelpes 2021-05-18 21:48:54 +02:00
parent 0733b04894
commit 5da11730ca

View File

@ -1 +1,4 @@
# TODO
FROM python:3-slim
ADD worker.py /
RUN pip install pika redis haversine
ENTRYPOINT ["python", "./worker.py"]