When installing node in my Dockerfile using:
curl -sL https://deb.nodesource.com/setup_12.x | bash -
Then I receive the following warning multiple times:
Warning: apt-key output should not be parsed (stdout is not a terminal)
See the following places in the setup script:
I did some research on the warning and it appears as if it is raised because the gpg keys could deprecate. However, all cited code fragments fetch these keys dynamically, so I think it would be okay to ignore the warnings.
Can we set APT_KEY_DONT_WARN_ON_DANGEROUS_USAGE=1 during each single apt-get add operation? It would be nice get rid of these warnings in so many Dockerfiles.
Would love to know how to fix this, I too have the same issue
Same...