Skip to content

Commit 9fd123c

Browse files
authored
Merge pull request #51 from benbucksch/llvmlite
Workaround llvmlite being incompatible with current llvm - Bug #49
2 parents 04562d4 + 057de7a commit 9fd123c

File tree

2 files changed

+7
-2
lines changed

2 files changed

+7
-2
lines changed

cpu.Dockerfile

+3-1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@ FROM tensorflow/tensorflow:1.8.0-py3
33
RUN mkdir /root/mimic2
44
COPY . /root/mimic2
55
WORKDIR /root/mimic2
6-
RUN pip install --no-cache-dir -r requirements.txt
6+
RUN apt-get update -y && apt-get install -y llvm-8
7+
RUN ln -s /usr/bin/llvm-config-8 /usr/bin/llvm-config
8+
RUN pip install --no-cache-dir -r requirements.txt
79

810
ENTRYPOINT [ "/bin/bash" ]

requirements.txt

+4-1
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,7 @@ scipy==0.19.0
77
tqdm==4.11.2
88
seaborn
99
flask_cors
10-
flask
10+
flask
11+
# Workaround llvmlite being incompatible with current llvm - Bug #49
12+
numba==0.45.1
13+
llvmlite==0.30.0

0 commit comments

Comments
 (0)