Sign inSign up

kenney/curl-secure

By kenney

•Updated almost 7 years ago

secure instrmento curl

Image
0

4.5K

kenney/curl-secure repository overview

Dockerfile

# https://hub.docker.com/_/alpine
FROM alpine:3.10

MAINTAINER Instrumentisto Team <[email protected]>


# Install dependencies
RUN apk add --update --no-cache \
            ca-certificates \
            libpcap \
            libgcc libstdc++ \
            libressl2.7-libcrypto libressl2.7-libssl \
 && update-ca-certificates \
 && rm -rf /var/cache/apk/*


# Compile and install Nmap from sources
RUN apk add --update --no-cache --virtual .build-deps \
        libpcap-dev libressl-dev lua-dev linux-headers \
        autoconf libtool curl \

 && apk del musl-utils \
 && apk del .build-deps \
 && rm -rf /var/cache/apk/* \
           /tmp/nmap*
RUN apk add curl

ENTRYPOINT ["/usr/bin/curl"]

Tag summary

Content type

Image

Digest

Size

6.1 MB

Last updated

almost 7 years ago

docker pull kenney/curl-secure