Ask HN: Do any know of a way to download gpg1 versions, without building source
I need to roll gpg@1.4.23 into a docker container. The only routes to getting that version seem to be source code mirrors. My plan is to push to docker hub an image based on my target os with got bill from source, and then do a multistage build and copy it over. Can any think of a better approach?
Thanks
4 comments
[ 2.8 ms ] story [ 23.2 ms ] threadexample, gnupg1-1.4.23-7: https://archives.fedoraproject.org/pub/archive/fedora/linux/...
FROM openjdk:8-alpine RUN apk update \ && apk fetch gnupg \ && apk add gnupg
or https://alpine.pkgs.org/3.15/alpine-community-x86_64/gnupg1-... ?