We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 3c9b986 + 7296cdc commit 934d412Copy full SHA for 934d412
Dockerfile
@@ -7,6 +7,8 @@ RUN apk --update add --virtual build-dependencies python3-dev build-base wget gi
7
WORKDIR EmailHarvester
8
9
#COPY requirements.txt .
10
-RUN pip3 install -r requirements.txt
+RUN python3 -m venv /path/to/venv
11
+RUN . /path/to/venv/bin/activate
12
+RUN pip install -r requirements.txt
13
ENTRYPOINT ["python3", "EmailHarvester.py"]
-CMD ["-h"]
14
+CMD ["-h"]
0 commit comments