Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
docker: Actually install dependencies
Previously, `pipenv install` would relock dependencies unless you passed `--ignore-pipfile`. This was changed in pipenv 2024.0.0: > As much requested, the `install` no longer does a complete lock > operation. Instead `install` follows the same code path as pipenv update > (which is upgrade + sync). > – https://github.com/pypa/pipenv/blob/v2024.0.0/CHANGELOG.md#behavior-changes What does not seem to be documented is that, if no `Pipfile` is present, `pipenv install` now does nothing. Use `pipenv sync` instead.
- Loading branch information