123456789101112131415161718192021222324252627282930313233343536373839 |
- FROM fedora:31
- ARG repo=https://pagure.io/pagure.git
- ARG branch=master
- ENV REPO=$repo
- ENV BRANCH=$branch
- RUN dnf -y --enablerepo=updates-testing install \
- python3-setuptools \
- python3-coverage \
- python3-nose \
- python3-mock \
- python3-docutils \
- python3-black \
- python3-flake8 \
- redis \
- which \
- git
- RUN cd / \
- && GIT_TRACE=1 GIT_CURL_VERBOSE=1 git clone -b $BRANCH $REPO \
- && chmod +x /pagure/dev/containers/runtests_py3.sh \
- && sed -i -e 's|\["alembic",|\["alembic-3",|' /pagure/tests/test_alembic.py
- # Install all the requirements from the spec file and replace the macro
- # %{python_pkgversion} by '3' which thus installs all the py3 version of
- # the dependencies.
- RUN sed -i "/Requires: python%{python_pkgversion}-enum34/d" /pagure/files/pagure.spec && \
- dnf install -y --enablerepo=updates-testing `grep "Requires:" /pagure/files/pagure.spec | \
- awk '{split($0, a, " "); print a[2]}' |grep -v "%{name}" | \
- sed -e "s|%{python_pkgversion}|3|"` && \
- dnf clean all && \
- cd /pagure && \
- python3 setup.py build
- WORKDIR /pagure
- ENTRYPOINT ["/pagure/dev/containers/runtests_py3.sh"]
- CMD []
|