wget on Alpine 3.17 and 3.22
Only difference is FROM statement in Dockerfile
Docker file:
FROM alpine:3.17
RUN apk --update add openssl wget \
&& rm -rf /var/cache/apk/*
ENTRYPOINT [ "wget" ]
Usage:
docker run --rm -v ${PWD}:/data -w /data jysgro/wget:alp3.17 URL-TO-DOWNLOAD
Since there is an entrypoint, just provide the URL. Additional commands as usual, e.g. -r for recursive etc.
Content type
Image
Digest
sha256:da00dec2d…
Size
5.3 MB
Last updated
over 1 year ago
docker pull jysgro/wget:alp3.22