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
I'm trying to download the latest curl on a debian 11 docker base image with the following, and unable to verify with the following error: any ideas?
#0 9.767 gpg: directory '/root/.gnupg' created #0 9.768 gpg: keybox '/root/.gnupg/pubring.kbx' created #0 11.19 gpg: keyserver receive failed: No data
Dockerfile
# Install required packages and download the latest version of curl and its signature RUN apt-get update && \ apt-get install -y gnupg && \ curl https://github.com/moparisthebest/static-curl/releases/download/v8.0.1/curl-amd64 -o /usr/local/bin/curl && \ curl https://github.com/moparisthebest/static-curl/releases/download/v8.0.1/sha256sum.txt -o sha256sum.txt && \ curl https://github.com/moparisthebest/static-curl/releases/download/v8.0.1/sha256sum.txt.asc -o sha256sum.txt.asc && \ gpg --keyserver hkps://keys.openpgp.org --recv-keys 7D21F91B8D5E1C63 && \ gpg --verify sha256sum.txt.asc sha256sum.txt && \ sha256sum -c --ignore-missing sha256sum.txt && \ chmod +x /usr/local/bin/curl && \ apt-get remove -y gnupg && \ apt-get -y autoremove && \ apt-get clean && \ rm -rf /var/lib/apt/lists/*
The text was updated successfully, but these errors were encountered:
Did you figure this out? I have the same problem.
Sorry, something went wrong.
No branches or pull requests
I'm trying to download the latest curl on a debian 11 docker base image with the following, and unable to verify with the following error: any ideas?
Dockerfile
The text was updated successfully, but these errors were encountered: