]> git.proxmox.com Git - mirror_qemu.git/blame - tests/docker/dockerfiles/python.docker
python: drop pipenv
[mirror_qemu.git] / tests / docker / dockerfiles / python.docker
CommitLineData
6b9c2777
JS
1# Python library testing environment
2
3FROM fedora:latest
4MAINTAINER John Snow <jsnow@redhat.com>
5
6# Please keep this list sorted alphabetically
7ENV PACKAGES \
8 gcc \
9 make \
6b9c2777
JS
10 python3 \
11 python3-pip \
12 python3-tox \
13 python3-virtualenv \
14 python3.10
15
16RUN dnf install -y $PACKAGES
17RUN rpm -q $PACKAGES | sort > /packages.txt