Add NetworkX to Dockerfiles

Reviewers: mferencevic

Reviewed By: mferencevic

Subscribers: pullbot

Differential Revision: https://phabricator.memgraph.io/D2753
This commit is contained in:
Marko Budiselic 2020-04-03 20:03:02 +02:00
parent 1d5952bb9c
commit 590fc5c9a8
2 changed files with 8 additions and 2 deletions

View File

@ -3,9 +3,12 @@ FROM debian:stretch
ARG deb_release ARG deb_release
RUN apt-get update && apt-get install -y \ RUN apt-get update && apt-get install -y \
openssl libcurl3 libssl1.1 python3 libpython3.5 \ openssl libcurl3 libssl1.1 python3 libpython3.5 python3-pip \
--no-install-recommends \
&& rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/* && rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*
RUN pip3 install networkx
COPY ${deb_release} / COPY ${deb_release} /
# Install memgraph package # Install memgraph package

View File

@ -3,9 +3,12 @@ FROM debian:stretch
ARG deb_release ARG deb_release
RUN apt-get update && apt-get install -y \ RUN apt-get update && apt-get install -y \
openssl libcurl3 libssl1.1 libseccomp2 python3 libpython3.5 \ openssl libcurl3 libssl1.1 libseccomp2 python3 libpython3.5 python3-pip \
--no-install-recommends \
&& rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/* && rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*
RUN pip3 install networkx
COPY ${deb_release} / COPY ${deb_release} /
# Install memgraph package # Install memgraph package