Skip to content

Commit

Permalink
Fix dockerfile to build GraphBLAS 3 deps (#649)
Browse files Browse the repository at this point in the history
* added libomp-dev to dockerfile

* added libgomp1 to the lighter docker image build flow
  • Loading branch information
DvirDukhan authored and swilly22 committed Sep 19, 2019
1 parent 383c033 commit 7a43607
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions Dockerfile
@@ -1,6 +1,6 @@
FROM redis:latest as builder

ENV DEPS "automake peg libtool autoconf python python-setuptools python-pip wget build-essential cmake m4 libomp-dev"
ENV DEPS "automake peg libtool autoconf python python-setuptools python-pip wget build-essential cmake m4 libgomp1"

# Set up a build environment
RUN set -ex;\
Expand All @@ -24,7 +24,9 @@ FROM redis:latest
ENV LIBDIR /usr/lib/redis/modules
WORKDIR /data
RUN set -ex;\
mkdir -p "$LIBDIR";
mkdir -p "$LIBDIR";\
apt-get update;\
apt-get install -y --no-install-recommends libgomp1;

COPY --from=builder /redisgraph/src/redisgraph.so "$LIBDIR"

Expand Down

0 comments on commit 7a43607

Please sign in to comment.