-
-
Notifications
You must be signed in to change notification settings - Fork 5
New issue
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
False positive flagged if quotes used when replacing variables in an ARG, ENV, or LABEL #36
Labels
Comments
rcjsuen
changed the title
False positive flagged if quotes used when replacing variables in an ENV
False positive flagged if quotes used when replacing variables in an ENV or a LABEL
Apr 19, 2018
Since FROM scratch
LABEL BUNDLE_WITHOUT=${bundle_without:-'development test'}
|
I don't think any code changes will be necessary on this end. Should just need to adopt the new version of |
Same problem applies to FROM scratch
ARG BUNDLE_WITHOUT=${bundle_without:-'development test'}
|
rcjsuen
changed the title
False positive flagged if quotes used when replacing variables in an ENV or a LABEL
False positive flagged if quotes used when replacing variables in an ARG, ENV, or LABEL
Apr 19, 2018
rcjsuen
added a commit
that referenced
this issue
May 25, 2018
Signed-off-by: Remy Suen <[email protected]>
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
The following Dockerfile will built without any problems. We need to fix the validator so that it doesn't consider the
ENV
instruction to be an error.The text was updated successfully, but these errors were encountered: