Update Dockerfile

This commit is contained in:
Sliper247 2023-12-12 20:54:38 +03:00 committed by GitHub
parent 3c9b986118
commit 7296cdc85a
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"]
CMD ["-h"]