1 # Python library testing environment
4 MAINTAINER John Snow <jsnow@redhat.com>
6 # Please keep this list sorted alphabetically
21 RUN dnf install -y $PACKAGES
22 RUN rpm -q $PACKAGES | sort > /packages.txt
23 # As a final step configure the user (if env is defined)
26 RUN if [ "${USER}" ]; then \
27 id ${USER} 2>/dev/null || useradd -u ${UID} -U ${USER}; fi