Skip to content

Commit

Permalink
remove node classification
Browse files Browse the repository at this point in the history
  • Loading branch information
antoniofilipovic committed Jan 23, 2024
1 parent d5972ac commit e1ca603
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Dockerfile.release
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,7 @@ COPY memgraph-${TARGETARCH}.deb .
# Hack to remove modules that cause error on loading of torch modules
# Must be here due to multi-phase build. The setup script is in dev phase
# whereas we unpack memgraph in the base phase
RUN dpkg -i memgraph-${TARGETARCH}.deb && rm memgraph-${TARGETARCH}.deb && rm /usr/lib/memgraph/query_modules/schema.so \
&& rm /usr/lib/memgraph/query_modules/example_cpp.so
RUN dpkg -i memgraph-${TARGETARCH}.deb && rm memgraph-${TARGETARCH}.deb

ENV LD_LIBRARY_PATH /usr/lib/memgraph/query_modules

Expand Down Expand Up @@ -90,7 +89,8 @@ RUN mv /mage/e2e /e2e/ \
&& chown -R memgraph: /mage/e2e \
&& export PATH="/usr/local/lib/python${PY_VERSION}:${PATH}" \
&& apt-get -y --purge autoremove clang git curl python3-pip python3-dev cmake build-essential \
&& apt-get clean
&& apt-get clean \
&& rm /usr/lib/memgraph/query_modules/node_classification.py

USER memgraph
ENTRYPOINT ["/usr/lib/memgraph/memgraph"]
Expand Down

0 comments on commit e1ca603

Please sign in to comment.