azaa1/curl

By azaa1

Updated over 2 years ago

Simple curl image

Image
API Management
0

9.8K

Simple curl image

How to use this image

Getting docker image

To 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

Latest Vulnerability Check

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

Dockerfile:

# Filename: Dockerfile - Simple curl image
FROM alpine:3.14
RUN apk add --no-cache curl 
ENTRYPOINT ["/usr/bin/curl"]

Docker Pull Command

docker pull azaa1/curl