no-pipenv build image without pipenv from a pipenv project FROM abersh/no-pipenv as requirements FROM python:3.7 # ... yourself commands COPY --from=requirements /src/requirements.txt . RUN pip install -r requirements.txt # ... yourself commands