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
Related to #38 , an error is issued for variable expansion of the form ENV FOO=${FOO:?}
ENV FOO=${FOO:?}
failed to process "${SERVICE_NAME:?}": unsupported modifier (?) in substitution
However, this does not seem to be true as building a Dockerfile with this syntax works (as I, at least) expect. E.g. building this file:
FROM ubuntu:20.04 ARG FOO ENV FOO=${FOO:?}
...results in:
Step 3/3 : ENV FOO=${FOO:?} failed to process "${FOO:?}": FOO: is not allowed to be unset
unless passed --build-arg FOO=bar.
--build-arg FOO=bar
Docker version 20.10.5, build 55c4c88
Let me know if I can provide any more info!
The text was updated successfully, but these errors were encountered:
@tymokvo I have reproduced the issue. Thank you for the bug report!
Sorry, something went wrong.
ae6234e
@tymokvo The issue has now been fixed. Thanks again!
Wow, fast turnaround!
rcjsuen
No branches or pull requests
Related to #38 , an error is issued for variable expansion of the form
ENV FOO=${FOO:?}
However, this does not seem to be true as building a Dockerfile with this syntax works (as I, at least) expect. E.g. building this file:
...results in:
unless passed
--build-arg FOO=bar
.Docker version 20.10.5, build 55c4c88
Let me know if I can provide any more info!
The text was updated successfully, but these errors were encountered: