diff options
| author | Matthias Krüger <matthias.krueger@famsik.de> | 2025-01-19 01:18:54 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-01-19 01:18:54 +0100 |
| commit | 81a464f8a5f9d6e0eec880b275f58538756a14b6 (patch) | |
| tree | 1cf072b6526640f2c156bb0467e4af7efb9ff8ed /src/ci | |
| parent | 8825073dcc622aae7f50ab7e2d41369c6286b73a (diff) | |
| parent | ffc7b5dc2097a002a7040a148aa85596d063fdfd (diff) | |
Rollup merge of #135623 - marcoieni:mingw-check-tidy-dockerfile, r=Kobzol
ci: use ghcr ubuntu image for mingw-check-tidy
Diffstat (limited to 'src/ci')
| -rw-r--r-- | src/ci/docker/host-x86_64/mingw-check-tidy/Dockerfile | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/ci/docker/host-x86_64/mingw-check-tidy/Dockerfile b/src/ci/docker/host-x86_64/mingw-check-tidy/Dockerfile index f52e306974c..9ca8cc740a5 100644 --- a/src/ci/docker/host-x86_64/mingw-check-tidy/Dockerfile +++ b/src/ci/docker/host-x86_64/mingw-check-tidy/Dockerfile @@ -1,4 +1,6 @@ -FROM ubuntu:22.04 +# We use the ghcr base image because ghcr doesn't have a rate limit +# and the mingw-check-tidy job doesn't cache docker images in CI. +FROM ghcr.io/rust-lang/ubuntu:22.04 ARG DEBIAN_FRONTEND=noninteractive RUN apt-get update && apt-get install -y --no-install-recommends \ |
