Codebase list emailharvester / 9fa3ac99-594d-4464-ae4e-b596e3b081fe/main Dockerfile
9fa3ac99-594d-4464-ae4e-b596e3b081fe/main

Tree @9fa3ac99-594d-4464-ae4e-b596e3b081fe/main (Download .tar.gz)

Dockerfile @9fa3ac99-594d-4464-ae4e-b596e3b081fe/mainraw · history · blame

FROM alpine:edge


RUN apk --update add --no-cache python3 py3-requests py3-pip openssl ca-certificates
RUN apk --update add --virtual build-dependencies python3-dev build-base wget git \
  && git clone https://github.com/maldevel/EmailHarvester.git
WORKDIR EmailHarvester

#COPY requirements.txt .
RUN pip3 install -r requirements.txt
ENTRYPOINT ["python3", "EmailHarvester.py"]
CMD ["-h"]