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
php-nginx:8.3
A GPG key in this image has expired. This leads to non-zero exit codes when running apt-get update in our Dockerfile
apt-get update
The issue can be resolved in user-land by adding the following to a Dockerfile before apt-get update
curl -O https://nginx.org/keys/nginx_signing.key && apt-key add ./nginx_signing.key
However, it would be ideal if the workaround was unnecessary 😁
The text was updated successfully, but these errors were encountered:
No branches or pull requests
A GPG key in this image has expired. This leads to non-zero exit codes when running
apt-get update
in our DockerfileThe issue can be resolved in user-land by adding the following to a Dockerfile before
apt-get update
curl -O https://nginx.org/keys/nginx_signing.key && apt-key add ./nginx_signing.key
However, it would be ideal if the workaround was unnecessary 😁
The text was updated successfully, but these errors were encountered: