Skip to content

Commit

Permalink
respect venv
Browse files Browse the repository at this point in the history
Signed-off-by: Jesse Bowling <[email protected]>
  • Loading branch information
Jesse Bowling committed Oct 5, 2020
1 parent 35167b2 commit 93330c8
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ RUN apk --no-cache add python3
RUN python3 -m venv /app

COPY requirements.txt /requirements.txt
RUN python3 -m pip install -r requirements.txt
RUN /app/bin/pip install -r requirements.txt

COPY setup.py /src/setup.py
COPY hpfeeds /src/hpfeeds
Expand Down
4 changes: 2 additions & 2 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,5 @@ idna-ssl==1.1.0; python_version > '3.5'
multidict==4.1.0; python_version > '3.5'
prometheus-client==0.2.0; python_version > '3.5'
yarl==1.1.1; python_version > '3.5'
wrapt==1.10.11
pymongo
wrapt==1.10.11; python_version > '3.5'
pymongo; python_version > '3.5'

0 comments on commit 93330c8

Please sign in to comment.