Introduction
Introduction Statistics Contact Development Disclaimer Help
Dockerfile - docker-images - Various docker image builds I have created over th…
git clone git://jay.scot/docker-images
Log
Files
Refs
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 libf…
22 && rm -rf /var/cache/apk/*
23
24 WORKDIR /usr/share/theHarvester
25 ENTRYPOINT ["/usr/share/theHarvester/theHarvester.py"]
You are viewing proxied material from jay.scot. The copyright of proxied material belongs to its original authors. Any comments or complaints in relation to proxied material should be directed to the original authors of the content concerned. Please see the disclaimer for more details.