Skip to content

Commit

Permalink
Set embeddings_path in Dockerfile.local
Browse files Browse the repository at this point in the history
  • Loading branch information
kkaris committed Nov 29, 2023
1 parent b450d9d commit 8aca4c0
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion docker/Dockerfile.local
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,13 @@ RUN apt-get update && \
ln -s /usr/bin/python3 /usr/bin/python

ARG branch=main
ARG embeddings_path=/sw/embeddings.tsv.gz
ENV EMBEDDINGS_PATH=${embeddings_path}

# Add graph content
COPY nodes.tsv.gz /sw/nodes.tsv.gz
COPY edges.tsv.gz /sw/edges.tsv.gz
COPY embeddings.tsv.gz /sw/embeddings.tsv.gz
COPY embeddings.tsv.gz ${embeddings_path}

# Ingest graph content into neo4j
RUN sed -i 's/#dbms.default_listen_address/dbms.default_listen_address/' /etc/neo4j/neo4j.conf && \
Expand Down

0 comments on commit 8aca4c0

Please sign in to comment.