mirror of
https://github.com/fedora-python/tox-current-env.git
synced 2024-12-24 09:06:15 +01:00
9ba5fae34a
Inspired by https://github.com/pytest-dev/pluggy/blob/master/tox.ini Fedora 30 has tox 3.5.
13 lines
444 B
Docker
13 lines
444 B
Docker
FROM fedora
|
|
|
|
RUN dnf -y install --setopt=install_weak_deps=false --setopt=tsflags=nodocs \
|
|
--setopt=deltarpm=false --allowerasing --best --disablerepo=\*modular \
|
|
tox python36 python37 python38 git-core && \
|
|
dnf -y --setopt=install_weak_deps=false --setopt=tsflags=nodocs --best\
|
|
--setopt=deltarpm=false --allowerasing --disablerepo=\*modular update && \
|
|
dnf clean all
|
|
|
|
ENV LANG=C.UTF-8 LC_ALL=C.UTF-8
|
|
|
|
CMD ["/usr/bin/tox"]
|