Fix pipenv installation and make it actually happen properly.

This commit is contained in:
Dorian 2017-10-21 21:53:19 -04:00
parent a1b1f485b7
commit 8a2cb01082
1 changed files with 1 additions and 1 deletions

View File

@ -23,7 +23,7 @@ RUN curl -sL https://deb.nodesource.com/setup_8.x | bash - \
# Install Python dependencies
RUN pip install pipenv
COPY ["Pipfile", "Pipfile.lock", "/app/rookeries/"]
RUN pipenv install --system
RUN cd /app/rookeries && pipenv install --system
# Install Node dependencies
COPY ["package.json", "yarn.lock", "/app/rookeries/"]