mirror of
https://github.com/maldevel/EmailHarvester.git
synced 2024-11-13 03:25:01 +08:00
12 lines
390 B
Text
12 lines
390 B
Text
|
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"]
|