mirror of
https://github.com/IT4Change/Ocelot-Social.git
synced 2026-01-20 20:01:22 +00:00
7 lines
313 B
Docker
7 lines
313 B
Docker
FROM neo4j:3.5.5
|
|
RUN wget https://github.com/neo4j-contrib/neo4j-apoc-procedures/releases/download/3.5.0.1/apoc-3.5.0.1-all.jar -P plugins/
|
|
RUN apk add --no-cache --quiet procps
|
|
COPY db_setup.sh /usr/local/bin/db_setup
|
|
COPY entrypoint.sh /docker-entrypoint-wrapper.sh
|
|
ENTRYPOINT ["/docker-entrypoint-wrapper.sh"]
|