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