repo.or.cz
/
qemu
/
armbru.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Merge remote-tracking branch 'remotes/dgilbert-gitlab/tags/pull-migration-20210726a...
[qemu/armbru.git]
/
tests
/
docker
/
dockerfiles
/
python.docker
blob
56d88417df4d11d96608c5b03171d80c6f8bf873
1
# Python library testing environment
2
3
FROM fedora:latest
4
MAINTAINER John Snow <jsnow@redhat.com>
5
6
# Please keep this list sorted alphabetically
7
ENV PACKAGES \
8
gcc \
9
make \
10
pipenv \
11
python3 \
12
python3-pip \
13
python3-tox \
14
python3-virtualenv \
15
python3.10
16
17
RUN dnf install -y $PACKAGES
18
RUN rpm -q $PACKAGES | sort > /packages.txt