dockerfiles/curl/Dockerfile

13 lines
217 B
Docker
Raw Normal View History

# curl in a container
#
# docker run --rm -it \
# jess/curl -sSL https://check.torproject.org/api/ip
#
FROM alpine:latest
MAINTAINER Jessica Frazelle <jess@docker.com>
RUN apk --no-cache add \
curl
CMD [ "curl" ]