URI: 
       Dockerfile - docker-images - Various docker image builds I have created over the years.
  HTML git clone git://jay.scot/docker-images
   DIR Log
   DIR Files
   DIR Refs
   DIR README
       ---
       Dockerfile (652B)
       ---
            1 FROM alpine:3.11
            2 MAINTAINER Jay Scott
            3 
            4 
            5 WORKDIR /usr/share
            6 # Limit the number of docker layers
            7 RUN apk add --update --no-cache \
            8   bash \
            9   git \
           10   python3 \
           11   build-base \
           12   py3-pip \
           13   python3-dev \
           14   libffi-dev \
           15   libxml2-dev \
           16   libxslt-dev \
           17   && pip3 install --upgrade pip \
           18   && git clone https://github.com/laramies/theHarvester.git \
           19   && pip3 install -r theHarvester/requirements.txt \
           20   && chmod +x theHarvester/theHarvester.py \
           21   && apk del --purge libxslt-dev libxml2-dev py3-pip git build-base libffi-dev python3-dev \
           22   && rm -rf /var/cache/apk/*
           23 
           24 WORKDIR /usr/share/theHarvester
           25 ENTRYPOINT ["/usr/share/theHarvester/theHarvester.py"]