Skip to content

Commit

Permalink
Merge pull request #51 from benbucksch/llvmlite
Browse files Browse the repository at this point in the history
Workaround llvmlite being incompatible with current llvm - Bug #49
  • Loading branch information
krisgesling committed Jun 8, 2020
2 parents 04562d4 + 057de7a commit 9fd123c
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 9fd123c

Please sign in to comment.