-
Notifications
You must be signed in to change notification settings - Fork 4.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #16489 from spowelljr/useGCRRegistry
testing: Use GCR image to prevent Docker Hub rate limits
- Loading branch information
Showing
5 changed files
with
10 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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
4
test/integration/testdata/image-build/test-f/inner/Dockerfile
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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"] |