qemu/tests/docker/dockerfiles/python.docker
John Snow 6832189fd7 python: drop pipenv
The pipenv tool was nice in theory, but in practice it's just too hard
to update selectively, and it makes using it a pain. The qemu.qmp repo
dropped pipenv support a while back and it's been functioning just fine,
so I'm backporting that change here to qemu.git.

Signed-off-by: John Snow <jsnow@redhat.com>
Message-id: 20230210003147.1309376-3-jsnow@redhat.com
Signed-off-by: John Snow <jsnow@redhat.com>
2023-02-22 23:35:03 -05:00

17 lines
344 B
Docker

# Python library testing environment
FROM fedora:latest
MAINTAINER John Snow <jsnow@redhat.com>
# Please keep this list sorted alphabetically
ENV PACKAGES \
gcc \
make \
python3 \
python3-pip \
python3-tox \
python3-virtualenv \
python3.10
RUN dnf install -y $PACKAGES
RUN rpm -q $PACKAGES | sort > /packages.txt