Skip to content

Commit 2aa288e

Browse files
committed
ci: fix annoying docker warning
Docker currently warns that we are missing a default value. Set this to scratch which will error if an appropriate image tag is not passed in to silence the warning.
1 parent dd1c590 commit 2aa288e

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

ci/test_imagefile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,8 @@
44

55
# See ci/README.md for usage.
66

7-
ARG CI_IMAGE_NAME_TAG
7+
# We never want scratch, but default arg silences a Warning
8+
ARG CI_IMAGE_NAME_TAG=scratch
89
FROM ${CI_IMAGE_NAME_TAG}
910

1011
ARG FILE_ENV

0 commit comments

Comments
 (0)