docker/fedora: use upstream registry to retch the base image

Fedora is now hosting its official docker images at
https://registry.fedoraproject.org
This commit is contained in:
Jordan Petridis 2019-03-14 16:54:11 +02:00 committed by Jordan Petridis
parent a9e17aad52
commit 71ef6dd804
3 changed files with 3 additions and 3 deletions

View file

@ -1,4 +1,4 @@
FROM fedora:29
FROM registry.fedoraproject.org/fedora:29
# System setup
RUN echo "fastestmirror=true" >> /etc/dnf/dnf.conf && \

View file

@ -1,4 +1,4 @@
FROM fedora:29
FROM registry.fedoraproject.org/fedora:29
COPY prepare.sh cleanup.sh /root/

View file

@ -1,4 +1,4 @@
FROM fedora
FROM registry.fedoraproject.org/fedora:29
RUN dnf install -y \
python3-pytest \