mirror of
https://github.com/fedora-python/tox-current-env.git
synced 2024-12-25 09:36:13 +01:00
13 lines
435 B
Docker
13 lines
435 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 && \
|
||
|
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"]
|