mirror of https://github.com/MycroftAI/mimic2.git
Merge pull request #51 from benbucksch/llvmlite
Workaround llvmlite being incompatible with current llvm - Bug #49master
commit
9fd123cac1
|
@ -3,6 +3,8 @@ FROM tensorflow/tensorflow:1.8.0-py3
|
|||
RUN mkdir /root/mimic2
|
||||
COPY . /root/mimic2
|
||||
WORKDIR /root/mimic2
|
||||
RUN pip install --no-cache-dir -r requirements.txt
|
||||
RUN apt-get update -y && apt-get install -y llvm-8
|
||||
RUN ln -s /usr/bin/llvm-config-8 /usr/bin/llvm-config
|
||||
RUN pip install --no-cache-dir -r requirements.txt
|
||||
|
||||
ENTRYPOINT [ "/bin/bash" ]
|
|
@ -7,4 +7,7 @@ scipy==0.19.0
|
|||
tqdm==4.11.2
|
||||
seaborn
|
||||
flask_cors
|
||||
flask
|
||||
flask
|
||||
# Workaround llvmlite being incompatible with current llvm - Bug #49
|
||||
numba==0.45.1
|
||||
llvmlite==0.30.0
|
||||
|
|
Loading…
Reference in New Issue