Skip to content

Commit

Permalink
Try to fix Docker build on Travis
Browse files Browse the repository at this point in the history
  • Loading branch information
Piotr Styczyński committed Oct 27, 2019
1 parent 2339a90 commit 09fd4bb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ RUN apt-get update
RUN apt-get -y install python3 python3-pip
RUN pip3 install virtualenv
RUN apt-get -y install python-dev
RUN virtualenv venv
ADD . /app/
WORKDIR /app/
RUN bash -c "source ./venv/bin/activate && pip3 install -r requirements_dev.txt && python3 setup.py build --force && python3 setup.py install --force"
RUN python3 -m virtualenv venv
RUN . ./venv/bin/activate && pip3 install -r requirements_dev.txt && python3 setup.py build --force && python3 setup.py install --force

0 comments on commit 09fd4bb

Please sign in to comment.