This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| FROM python:3.7.8-alpine3.12 | |
| RUN apk add --no-cache python3-dev libffi-dev gcc musl-dev make git | |
| #RUN pip install redis gevent fire | |
| #RUN pip install celery==4.4.6 | |
| #RUN pip install git+https://github.com/celery/celery.git@455e0a0e86679eaaba9f0da533066627b1d79296#egg=celery | |
| WORKDIR /app | |
| COPY requirements.txt /app/requirements.txt | |
| RUN pip install -r requirements.txt |