Merge pull request #51 from benbucksch/llvmlite

Workaround llvmlite being incompatible with current llvm - Bug #49
master
Kris Gesling 2020-06-08 21:58:38 +09:30 committed by GitHub
commit 9fd123cac1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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