Install olympia after we mount /code

This commit is contained in:
Christopher Grebs 2016-02-04 21:52:37 +01:00
Родитель 4bdd97a3cd
Коммит 92918ac47d
1 изменённых файлов: 2 добавлений и 1 удалений

Просмотреть файл

@ -57,7 +57,6 @@ RUN cd /pip && \
--find-links https://pyrepo.stage.mozaws.net/olympia/ \
--no-index --no-deps \
-r requirements/docker.txt && \
pip install -e /code && \
rm -r build cache
# Install the node_modules.
@ -68,6 +67,8 @@ RUN npm install
COPY . /code
WORKDIR /code
RUN pip install -e . /code
# Preserve bash history across image updates.
# This works best when you link your local source code
# as a volume.