diff --git a/dev/containers/f29-rpms-py3 b/dev/containers/f29-rpms-py3
index f3d3ae7..2c37ab4 100644
--- a/dev/containers/f29-rpms-py3
+++ b/dev/containers/f29-rpms-py3
@@ -6,7 +6,7 @@ ARG branch=master
 ENV REPO=$repo
 ENV BRANCH=$branch
 
-RUN dnf -y install \
+RUN dnf -y --enablerepo=updates-testing install \
     python3-setuptools \
     python3-coverage \
     python3-nose \
@@ -26,7 +26,7 @@ RUN cd / \
 # 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 dnf install -y `grep "Requires:" /pagure/files/pagure.spec | \
+RUN 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 && \