Workaround llvmlite being incompatible with current llvm - Bug #49

pull/51/head
Ben Bucksch 2020-05-15 03:26:19 +02:00
parent 04562d4f4d
commit 057de7a2a0
2 changed files with 7 additions and 2 deletions

View File

@ -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" ]

View File

@ -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