summaryrefslogtreecommitdiff
path: root/Dockerfile
blob: fb20beac743d40843af1dd775fe8ef7190c201b2 (plain)
1
2
3
4
5
FROM python:3.6-alpine
ADD requirements.txt /code/requirements.txt
WORKDIR /code
RUN pip install -r requirements.txt
CMD ["python", "worker.py"]