azaa1/curl
curl
imageTo pull the latest version:
docker pull azaa1/curl
Check everything works properly by running:
docker run --rm azaa1/curl --version
To run docker image:
docker run --rm azaa1/curl [options/URLs]
To scan image for vulnerabilities:
docker scan azaa1/curl
Scanned on 6/29/22
Testing azaa1/curl...
Package manager: apk
Project name: docker-image|azaa1/curl
Docker image: azaa1/curl
Platform: linux/amd64
Base image: alpine:3.14.6
✔ Tested 19 dependencies for known vulnerabilities, no vulnerable paths found.
According to our scan, you are currently using the most secure version of the selected base image
# Filename: Dockerfile - Simple curl image
FROM alpine:3.14
RUN apk add --no-cache curl
ENTRYPOINT ["/usr/bin/curl"]
docker pull azaa1/curl