We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
From what I can tell, LABEL instructions are similar to ENV instructions so we should be able to reuse the parsing code here.
LABEL
ENV
The text was updated successfully, but these errors were encountered:
FROM alpine LABEL a
Error response from daemon: LABEL must have two arguments
FROM alpine LABEL a=b c
Error response from daemon: Syntax error - can't find = in "c". Must be of the form: name=value
FROM alpine LABEL a=b c d=e
Sorry, something went wrong.
db5c80a
rcjsuen
No branches or pull requests
From what I can tell,
LABEL
instructions are similar toENV
instructions so we should be able to reuse the parsing code here.The text was updated successfully, but these errors were encountered: