Skip to content
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

Variable in FROM resolves to initial ENV instead of ignoring it #44

Closed
rcjsuen opened this issue Jun 16, 2018 · 0 comments
Closed

Variable in FROM resolves to initial ENV instead of ignoring it #44

rcjsuen opened this issue Jun 16, 2018 · 0 comments
Assignees
Labels

Comments

@rcjsuen
Copy link
Owner

rcjsuen commented Jun 16, 2018

import { DockerfileParser } from 'dockerfile-ast';

const content = "ENV image=alpine\nFROM $image";
let dockerfile = DockerfileParser.parse(content);
console.log(dockerfile.resolveVariable("image", 1));
alpine

FROM instructions can only resolve to variables defined by ARG instructions. The resolver should ignore variables defined by ENV instructions when trying to resolve a variable in a FROM.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

1 participant