xref: /qemu/tests/docker/dockerfiles/python.docker (revision 74fb2f4f4c47c966ab54687392e6561b4de4bb8a)
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 \
10    pipenv \
11    python3 \
12    python3-pip \
13    python3-tox \
14    python3-virtualenv \
15    python3.10
16
17RUN dnf install -y $PACKAGES
18RUN rpm -q $PACKAGES | sort > /packages.txt
19