mirror of
https://github.com/hwchase17/langchain
synced 2024-10-31 15:20:26 +00:00
44db4412c0
This PR adds graphdb to the docker compose so it can be used in integration tests. Co-authored-by: KARTHEEK YAKKALA <kartheekyakkala.se@gmail.com>
6 lines
206 B
Docker
6 lines
206 B
Docker
FROM ontotext/graphdb:10.5.1
|
|
RUN mkdir -p /opt/graphdb/dist/data/repositories/langchain
|
|
COPY config.ttl /opt/graphdb/dist/data/repositories/langchain/
|
|
COPY graphdb_create.sh /run.sh
|
|
ENTRYPOINT bash /run.sh
|