Skip to content

Commit

Permalink
fix(docker): add wheel to pip docker image
Browse files Browse the repository at this point in the history
Pip is now deprecating installation via the older install method that
does not use wheel. This deprecation message is now displaying, and it
appears that in a version of pip soon, we may start seeing errors.

Add wheel to the trame docker image to keep the installation process
simple for users (so that they will not be required to install wheel
themselves or create a `pyproject.toml` file).

See: pypa/pip#8559

Signed-off-by: Patrick Avery <patrick.avery@kitware.com>
  • Loading branch information
psavery committed Dec 2, 2022
1 parent 4822ad3 commit 6f34a4e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docker/Dockerfile.pip
Expand Up @@ -25,7 +25,7 @@ RUN wget -q -O- https://bootstrap.pypa.io/get-pip.py | python3.9 && \
pip install -U pip

# Install setup dependencies
RUN pip install PyYAML
RUN pip install PyYAML wheel

# Copy the pip scripts into place
COPY scripts/pip/* /opt/trame/
Expand Down

0 comments on commit 6f34a4e

Please sign in to comment.