curl-hc/Dockerfile
Knut Ahlers e2f35d214c
Initial version
Signed-off-by: Knut Ahlers <knut@ahlers.me>
2019-10-14 14:10:21 +02:00

8 lines
152 B
Docker

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