blob: 6344e0fcd353d620804db38b216ee1fce6033a73 (
plain)
1
2
3
4
5
6
|
FROM python:3.6-alpine
RUN apk add --no-cache postgresql-dev gcc python3-dev musl-dev
ADD requirements.txt /code/requirements.txt
WORKDIR /code
RUN pip install -r requirements.txt
CMD ["python", "worker.py"]
|