Skip to content

Commit 73fb898

Browse files
authored
ci: fix sync image sources (#676)
We periodically update our private container image copies. Point to public.ecr.aws/docker/library/ as source. Signed-off-by: Ramkumar Chinchani <[email protected]>
1 parent f417b16 commit 73fb898

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/sync-3rdparty-images.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
for n in ubuntu:latest alpine:edge alpine:3.19 centos:latest busybox:latest; do
3030
dest="ghcr.io/${{ github.repository_owner }}/$n"
3131
docker trust inspect "$n"
32-
docker pull $n
32+
docker pull public.ecr.aws/docker/library/$n
3333
docker tag $n "$dest"
3434
docker push $dest
3535
done

0 commit comments

Comments
 (0)