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
When you have an entrypoint that requires a comma separated value then the image is not correctly built:
Example:
oci_image( base = "@wiremock", entrypoint = [ "/docker-entrypoint.sh", '--permitted-system-keys="MY_HOST_V1,MY_HOST_V2"', ], )
Outcome (with docker inspect):
"Entrypoint": [ "/docker-entrypoint.sh", "--permitted-system-keys=\"MY_HOST_V1", "MY_HOST_V2\"", ]
I have tried to put the entrypoint within single quotes, double quotes, no qoutes and escaping the comma, but all lead to the same outcome.
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
When you have an entrypoint that requires a comma separated value then the image is not correctly built:
Example:
Outcome (with docker inspect):
I have tried to put the entrypoint within single quotes, double quotes, no qoutes and escaping the comma, but all lead to the same outcome.
The text was updated successfully, but these errors were encountered: