Skip to content

Commit

Permalink
Workaround llvmlite being incompatible with current llvm - Bug #49
Browse files Browse the repository at this point in the history
  • Loading branch information
benbucksch committed May 15, 2020
1 parent 04562d4 commit 057de7a
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
4 changes: 3 additions & 1 deletion cpu.Dockerfile
Expand Up @@ -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" ]
5 changes: 4 additions & 1 deletion requirements.txt
Expand Up @@ -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

0 comments on commit 057de7a

Please sign in to comment.