5 lines
109 B
Docker

FROM python:3-slim
ADD worker.py /
RUN pip install pika redis haversine
ENTRYPOINT ["python", "./worker.py"]