Skip to content

Commit 934d412

Browse files
authored
Merge pull request #59 from Sliper247/patch-1
Update Dockerfile
2 parents 3c9b986 + 7296cdc commit 934d412

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

Dockerfile

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ RUN apk --update add --virtual build-dependencies python3-dev build-base wget gi
77
WORKDIR EmailHarvester
88

99
#COPY requirements.txt .
10-
RUN pip3 install -r requirements.txt
10+
RUN python3 -m venv /path/to/venv
11+
RUN . /path/to/venv/bin/activate
12+
RUN pip install -r requirements.txt
1113
ENTRYPOINT ["python3", "EmailHarvester.py"]
12-
CMD ["-h"]
14+
CMD ["-h"]

0 commit comments

Comments
 (0)