12 lines
591 B
Docker
12 lines
591 B
Docker
# Used by CI to test get-images-from-files action (varied image formats, registry refs only)
|
|
# Short repo:tag (ignored by design; only registry refs are extracted)
|
|
FROM nginx:3.19
|
|
# Fully qualified with host and tag
|
|
FROM example.com/library/nginx:latest
|
|
# Registry path with tag
|
|
FROM example.com/distroless/static:nonroot
|
|
# With digest only but no registry (ignored)
|
|
FROM nginx@sha256:1234567890abcdef1234567890abcdef1234567890abcdef1234567890abcdef
|
|
# Fully qualified with digest
|
|
FROM example.com/distroless/static@sha256:abcdef1234567890abcdef1234567890abcdef1234567890abcdef1234567890abcd
|