curl-hc/Dockerfile

9 lines
152 B
Text
Raw Permalink Normal View History

FROM alpine:latest
RUN set -ex \
&& apk --no-cache add \
ca-certificates \
curl
ENTRYPOINT ["/usr/bin/curl", "-sSfL", "-o", "/dev/null"]