Skip to content

Commit

Permalink
upgrade pip
Browse files Browse the repository at this point in the history
  • Loading branch information
x110dc committed Oct 19, 2018
1 parent 9bb6d3f commit c57c110
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions Dockerfile
Expand Up @@ -27,10 +27,11 @@ COPY yarn.lock /app/
COPY .babelrc /app/
RUN yarn

RUN pip install --upgrade pip
COPY requirements.txt /app/
RUN pip3 install -r /app/requirements.txt
RUN pip install -r /app/requirements.txt
COPY dev-requirements.txt /app/
RUN pip3 install -r /app/dev-requirements.txt
RUN pip install -r /app/dev-requirements.txt

COPY . /app

Expand Down

0 comments on commit c57c110

Please sign in to comment.