14 lines
638 B
Docker
14 lines
638 B
Docker
# Used by CI to test get-images-from-files action (registry refs only, distinct from K8s)
|
|
# Registry with tag (Dockerfile)
|
|
FROM example.com/library/nginx:v1
|
|
# Registry path with tag — shared with K8s to test deduplication
|
|
FROM example.com/distroless/static:nonroot
|
|
# Registry with digest (Dockerfile)
|
|
FROM example.com/library/base@sha256:aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
|
|
|
|
# Ignored tags
|
|
## Short repo:tag (ignored by design; only registry refs are extracted)
|
|
FROM nginx:3.19
|
|
## With digest only but no registry (ignored)
|
|
FROM nginx@sha256:1234567890abcdef1234567890abcdef1234567890abcdef1234567890abcdef
|