Ensure docker build pip really install locally built package

This commit is contained in:
Alexandre Lissy 2020-04-08 17:13:52 +02:00
parent d8d5e6f358
commit a7deb9ee79

View File

@ -200,10 +200,10 @@ WORKDIR /DeepSpeech/native_client
RUN make deepspeech
WORKDIR /DeepSpeech/native_client/python
RUN make bindings
RUN pip3 install dist/deepspeech*
RUN pip3 install --upgrade dist/deepspeech*
WORKDIR /DeepSpeech/native_client/ctcdecode
RUN make bindings
RUN pip3 install dist/*.whl
RUN pip3 install --upgrade dist/*.whl
# << END Build and bind