mirror of https://github.com/xemu-project/xemu.git
tests/docker: use project specific container registries
Since Docker Hub has started to enforce pull rate limits on clients, it is preferrable to use project specific container registries where they are available. Fedora and OpenSUSE projects provide registries. The images in these registries are also refreshed on a more regular basis than the ones in docker hub, so the package update should generally be faster. While CentOS also has a registry it is considerably outdated compared to docker.io, and also only provides x86 images, while docker.io images are multi-arch. Signed-off-by: Daniel P. Berrangé <berrange@redhat.com> Signed-off-by: Alex Bennée <alex.bennee@linaro.org> Reviewed-by: Philippe Mathieu-Daudé <philmd@redhat.com> Reviewed-by: Wainer dos Santos Moschetta <wainersm@redhat.com> Reviewed-by: Willian Rampazzo <willianr@redhat.com> Reviewed-by: Alex Bennée <alex.bennee@linaro.org> Message-Id: <20210623142245.307776-4-berrange@redhat.com> Message-Id: <20210709143005.1554-12-alex.bennee@linaro.org>
This commit is contained in:
parent
6ddc3dc7a8
commit
102cd5c294
|
@ -2,7 +2,7 @@
|
|||
# Cross compiler for cris system tests
|
||||
#
|
||||
|
||||
FROM fedora:33
|
||||
FROM registry.fedoraproject.org/fedora:33
|
||||
ENV PACKAGES gcc-cris-linux-gnu
|
||||
RUN dnf install -y $PACKAGES
|
||||
RUN rpm -q $PACKAGES | sort > /packages.txt
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
FROM fedora:33
|
||||
FROM registry.fedoraproject.org/fedora:33
|
||||
ENV PACKAGES \
|
||||
bzip2 \
|
||||
ccache \
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
FROM fedora:33
|
||||
FROM registry.fedoraproject.org/fedora:33
|
||||
|
||||
# Please keep this list sorted alphabetically
|
||||
ENV PACKAGES \
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
FROM fedora:33
|
||||
FROM registry.fedoraproject.org/fedora:33
|
||||
|
||||
# Please keep this list sorted alphabetically
|
||||
ENV PACKAGES \
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
FROM fedora:33
|
||||
FROM registry.fedoraproject.org/fedora:33
|
||||
|
||||
# Please keep this list sorted alphabetically
|
||||
ENV PACKAGES \
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
FROM opensuse/leap:15.2
|
||||
FROM registry.opensuse.org/opensuse/leap:15.2
|
||||
|
||||
# Please keep this list sorted alphabetically
|
||||
ENV PACKAGES \
|
||||
|
|
Loading…
Reference in New Issue