1
0
mirror of https://github.com/gsi-upm/senpy synced 2024-11-21 15:52:28 +00:00

Pip install editable

Closes senpy/senpy#32
This commit is contained in:
J. Fernando Sánchez 2017-05-05 17:27:12 +02:00
parent 13cefbedfb
commit e112dd55ce

View File

@ -17,6 +17,6 @@ WORKDIR /usr/src/app
COPY test-requirements.txt requirements.txt /usr/src/app/
RUN pip install --use-wheel -r test-requirements.txt -r requirements.txt
COPY . /usr/src/app/
RUN pip install --no-deps --no-index .
RUN pip install --no-index --no-deps --editable .
ENTRYPOINT ["python", "-m", "senpy", "-f", "/senpy-plugins/", "--host", "0.0.0.0"]