Skip to content

Commit

Permalink
test: replace docker.io with fedora's registry
Browse files Browse the repository at this point in the history
In order to avoid running into docker.io's new download limit,
use the container directly from registry.fedoraproject.org.
  • Loading branch information
gicmo committed Nov 22, 2020
1 parent 8d40d9a commit 23e206d
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion test/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM docker.io/library/fedora:latest
FROM registry.fedoraproject.org/fedora:latest

RUN dnf -y upgrade \
&& dnf -y \
Expand Down
2 changes: 1 addition & 1 deletion test/container/builder/Dockerfile.fedora
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
ARG version=latest

FROM docker.io/library/fedora:$version
FROM registry.fedoraproject.org/fedora:$version

RUN dnf -y upgrade \
&& dnf -y \
Expand Down
2 changes: 1 addition & 1 deletion test/container/hub/Dockerfile.fedora
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
ARG version=latest

FROM docker.io/library/fedora:$version
FROM registry.fedoraproject.org/fedora:$version

# koji db schema is in docs, remove nodocs from from dnf config
RUN sed -i '/^tsflags=nodocs$/d' /etc/dnf/dnf.conf
Expand Down

0 comments on commit 23e206d

Please sign in to comment.