Codebase list emailharvester / 3d54ee89-7270-40fa-834c-356f64d28463/upstream Dockerfile
3d54ee89-7270-40fa-834c-356f64d28463/upstream

Tree @3d54ee89-7270-40fa-834c-356f64d28463/upstream (Download .tar.gz)

Dockerfile @3d54ee89-7270-40fa-834c-356f64d28463/upstreamraw · 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"]