Skip to content

Latest commit

 

History

History
30 lines (19 loc) · 546 Bytes

DL3048.md

File metadata and controls

30 lines (19 loc) · 546 Bytes

Pattern: Invalid label key

Issue: -

Description

Not all strings are supported as label keys.

Example of incorrect code:

LABEL +?not..valid--key="foo"

Example of correct code:

FROM ubuntu:20
RUN wget --progress=dot:giga https://example.com/big_file.tar
LABEL valid-key.label="bar"

Further Reading