Rearranged order of pip commands in Dockerfile

pull/26/head
Piero Toffanin 2016-10-05 10:56:10 -04:00
rodzic 87b71189ee
commit eb241c9f0c
1 zmienionych plików z 2 dodań i 1 usunięć

Wyświetl plik

@ -10,11 +10,12 @@ WORKDIR /webodm
# Install pip reqs
ADD requirements.txt /webodm/
RUN pip install --upgrade git+https://github.com/pierotofy/django-knockout
RUN pip install -r requirements.txt
# swagger_spec_validator is not up to date, fetch directly from github
# also install django-knockout
RUN pip install --upgrade git+https://github.com/Yelp/swagger_spec_validator git+https://github.com/pierotofy/django-knockout
RUN pip install --upgrade git+https://github.com/Yelp/swagger_spec_validator
ADD . /webodm/