mirror of
https://github.com/kennethreitz/pipenv.git
synced 2026-06-05 22:50:18 +00:00
b38ea71658
The Docker example in the Basic Usage document needed a bit of TLC. Because the name of the virtualenv changed between the builder and the runtime container, Python was unable to find itself or its site-packages directory: coolio@674956d0c53e:/usr/src$ ./venv/bin/pip bash: ./venv/bin/pip: /usr/src/.venv/bin/python: bad interpreter: No such file or directory To fix this, I changed the directory of the virtualenv in the runtime container to .venv which matches the builder. I also added an example of how to get run.py into the container in the first place, since we run it later.