FROM python:3 COPY requirements.txt /tmp/ RUN pip install -r /tmp/requirements.txt COPY . /code WORKDIR /code CMD python -m workers