Skip to content

Commit

Permalink
containers: Don't force specific container registries.
Browse files Browse the repository at this point in the history
Specifying exact container registry doesn't allow users to choose a
different one.  This may result in build failures due to that specific
registry being unavailable or docker hub, for example, limiting the
connections, which sometimes happens in GHA.

Let the container engine decide where to get the images from instead.
Users can configure the engine with preferred registries, if needed.

Signed-off-by: Ilya Maximets <[email protected]>
  • Loading branch information
igsilya committed Feb 12, 2025
1 parent 8dd776c commit 4a8a3aa
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion utilities/containers/fedora/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM quay.io/fedora/fedora:40
FROM fedora:40

ARG CONTAINERS_PATH

Expand Down
2 changes: 1 addition & 1 deletion utilities/containers/ubuntu/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM registry.hub.docker.com/library/ubuntu:24.04
FROM ubuntu:24.04

ARG CONTAINERS_PATH

Expand Down

0 comments on commit 4a8a3aa

Please sign in to comment.