Merge pull request #59 from Sliper247/patch-1

Update Dockerfile
This commit is contained in:
maldevel 2023-12-13 09:33:05 +02:00 committed by GitHub
commit 934d4121a9
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -7,6 +7,8 @@ RUN apk --update add --virtual build-dependencies python3-dev build-base wget gi
WORKDIR EmailHarvester
#COPY requirements.txt .
RUN pip3 install -r requirements.txt
RUN python3 -m venv /path/to/venv
RUN . /path/to/venv/bin/activate
RUN pip install -r requirements.txt
ENTRYPOINT ["python3", "EmailHarvester.py"]
CMD ["-h"]