Skip to content

Commit

Permalink
Merge pull request #755 from WorldBank-Transport/bugfix/deprecated-pi…
Browse files Browse the repository at this point in the history
…p-dep-flag

Remove deprecated --process-dependency-links flag from pip install
  • Loading branch information
rmartz authored Feb 25, 2019
2 parents 80667cd + 56d56de commit 21c1a14
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion app/Dockerfile.base
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ WORKDIR /opt/app

COPY . /opt/app

RUN pip install --no-cache-dir --process-dependency-links djsonb -r requirements.txt
RUN pip install --no-cache-dir djsonb -r requirements.txt

EXPOSE 4000

Expand Down
2 changes: 1 addition & 1 deletion app/Dockerfile.development
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
FROM driver-app:latest

RUN pip install --no-cache-dir --process-dependency-links djsonb -r dev-requirements.txt --src /opt
RUN pip install --no-cache-dir djsonb -r dev-requirements.txt --src /opt
EXPOSE 8000

CMD ["driver.wsgi", "-w1", "-b:4000", "--reload", "-kgevent"]

0 comments on commit 21c1a14

Please sign in to comment.