Dockerfile - docker-images - Various docker image builds I have created over the years.
 (HTM) git clone git://jay.scot/docker-images
 (DIR) Log
 (DIR) Files
 (DIR) Refs
 (DIR) README
       ---
       Dockerfile (442B)
       ---
            1 FROM alpine:latest
            2 MAINTAINER Jay Scott
            3 
            4 RUN apk add --update \
            5   git \
            6   python3 \
            7   py-pip \
            8   gcc \
            9   libxml2-dev \
           10   libxslt-dev \
           11   libc-dev \
           12   python3-dev \
           13   && rm -rf /var/cache/apk/*
           14 
           15 # Install dnsrecon from git along with deps
           16 WORKDIR /usr/share
           17 RUN git clone https://github.com/darkoperator/dnsrecon.git \
           18     && cd dnsrecon \
           19     && pip3 install --no-cache-dir -r requirements.txt
           20 
           21 ENTRYPOINT ["/usr/share/dnsrecon/dnsrecon.py"]