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
The extra semi-colon at the end is causing parsing problems in the validator.
FROM privateregistry.com:5000/image:tag FROM localhost:1234/node:9 FROM 123.22.33.123:2345/user/image:tag2
$ dockerfile-utils lint Dockerfile Line: 1 FROM privateregistry.com:5000/image:tag ^^^ Error: invalid reference format Line: 2 FROM localhost:1234/node:9 ^ Error: invalid reference format Line: 3 FROM 123.22.33.123:2345/user/image:tag2 ^^^^ Error: invalid reference format
The text was updated successfully, but these errors were encountered:
329e571
Fix #39 Test another scenario from vscode-docker
7f13895
Another bug in the Microsoft/vscode-docker repository was opened about this problem. microsoft/vscode-docker#280 Signed-off-by: Remy Suen <[email protected]>
c9d2ad5
rcjsuen
No branches or pull requests
The extra semi-colon at the end is causing parsing problems in the validator.
The text was updated successfully, but these errors were encountered: