Sign inSign up

abihf/wget

By abihf

•Updated over 8 years ago

Docker image to download file using wget

Image
0

5M+

Dockerfile
FROM alpine

ADD ./entrypoint.sh /entrypoint.sh
RUN apk --no-cache add wget openssl ca-certificates

ENTRYPOINT ["/entrypoint.sh"]