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
Doing a build with Docker version 27.0.2 I noticed warnings like:
2 warnings found (use --debug to expand): LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format (line 25) LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format (line 26)
2 warnings found (use --debug to expand):
These were due to the lines:
grep -n ENV otobo.elasticsearch.dockerfile 25:ENV LC_ALL C.UTF-8 26:ENV LANG C.UTF-8
Note that there are no = sign between key and value.
The explanation of the warnings is at https://docs.docker.com/reference/build-checks/legacy-key-value-format/ . The documentation of the ENV command confirms that. See https://docs.docker.com/reference/dockerfile/#env .
Note that e.g. otobo.nginx-kerberos.dockerfile already used the = signs.
ENV SPNEGO_AUTH_COMMIT_ID=v1.1.1 ENV SPNEGO_AUTH_COMMIT_ID_FILE=1.1.1
TODO:
The text was updated successfully, but these errors were encountered:
Issue #3553: ENV command with '=' separating key and value
dd23a50
e92f9ce
baf7cb5
the remaining cases that were not merged from rel-10_0
a59bc7e
Done. The Docker image builds in the branches were fine. A run of the test suite in rel-10_0 was fine too. Closing this issue.
Sorry, something went wrong.
bschmalhofer
No branches or pull requests
Doing a build with Docker version 27.0.2 I noticed warnings like:
These were due to the lines:
Note that there are no = sign between key and value.
The explanation of the warnings is at https://docs.docker.com/reference/build-checks/legacy-key-value-format/ . The documentation of the ENV command confirms that. See https://docs.docker.com/reference/dockerfile/#env .
Note that e.g. otobo.nginx-kerberos.dockerfile already used the = signs.
TODO:
The text was updated successfully, but these errors were encountered: