Skip to content

Commit

Permalink
Merge pull request #16489 from spowelljr/useGCRRegistry
Browse files Browse the repository at this point in the history
testing: Use GCR image to prevent Docker Hub rate limits
  • Loading branch information
medyagh authored May 16, 2023
2 parents 642583e + 1b783fc commit dca5e63
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 10 deletions.
4 changes: 2 additions & 2 deletions test/integration/testdata/image-build/test-arg/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
FROM alpine:latest
FROM gcr.io/google-containers/alpine-with-bash:1.0
ARG ENV_A
ARG ENV_B
RUN echo "test-build-arg" $ENV_A $ENV_B
CMD ["/bin/sh", "-c"]
CMD ["/bin/sh", "-c"]
4 changes: 2 additions & 2 deletions test/integration/testdata/image-build/test-env/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM alpine:latest
FROM gcr.io/google-containers/alpine-with-bash:1.0
ARG AAA
RUN echo "test-build-arg" $AAA
CMD ["/bin/sh", "-c"]
CMD ["/bin/sh", "-c"]
4 changes: 2 additions & 2 deletions test/integration/testdata/image-build/test-f/inner/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
FROM alpine:latest
FROM gcr.io/google-containers/alpine-with-bash:1.0

CMD ["/bin/sh", "-c"]
CMD ["/bin/sh", "-c"]
4 changes: 2 additions & 2 deletions test/integration/testdata/image-build/test-ignore/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
FROM alpine:latest
FROM gcr.io/google-containers/alpine-with-bash:1.0

CMD ["/bin/sh", "-c"]
CMD ["/bin/sh", "-c"]
4 changes: 2 additions & 2 deletions test/integration/testdata/image-build/test-normal/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
FROM alpine:latest
FROM gcr.io/google-containers/alpine-with-bash:1.0

CMD ["/bin/sh", "-c"]
CMD ["/bin/sh", "-c"]

0 comments on commit dca5e63

Please sign in to comment.