Spaces:
Sleeping
Sleeping
Commit Β·
50a3cfd
1
Parent(s): b40cc1f
Fix: Neo4j 5.24.0 + APOC 5.24.0 hardcoded (confirmed published)
Browse files- Dockerfile +8 -12
Dockerfile
CHANGED
|
@@ -43,21 +43,17 @@ RUN curl -fsSL https://deb.nodesource.com/setup_20.x | bash - \
|
|
| 43 |
&& apt-get install -y --no-install-recommends nodejs \
|
| 44 |
&& rm -rf /var/lib/apt/lists/*
|
| 45 |
|
| 46 |
-
# ββ Neo4j Community
|
| 47 |
-
ENV NEO4J_VERSION=5.26.0
|
| 48 |
ENV NEO4J_HOME=/opt/neo4j
|
| 49 |
ENV PATH="${NEO4J_HOME}/bin:${PATH}"
|
| 50 |
|
| 51 |
-
RUN wget -q "https://dist.neo4j.org/neo4j-community-
|
| 52 |
-
&& tar -xzf "neo4j-community-
|
| 53 |
-
&& mv "/opt/neo4j-community-
|
| 54 |
-
&& rm "neo4j-community-
|
| 55 |
-
&& rm -rf /opt/neo4j/data
|
| 56 |
-
|
| 57 |
-
|
| 58 |
-
RUN wget -q \
|
| 59 |
-
"https://github.com/neo4j-labs/apoc/releases/download/${NEO4J_VERSION}/apoc-${NEO4J_VERSION}-core.jar" \
|
| 60 |
-
-O /opt/neo4j/plugins/apoc-core.jar
|
| 61 |
|
| 62 |
# Neo4j configuration β listen on all interfaces, use /data for persistence
|
| 63 |
RUN { \
|
|
|
|
| 43 |
&& apt-get install -y --no-install-recommends nodejs \
|
| 44 |
&& rm -rf /var/lib/apt/lists/*
|
| 45 |
|
| 46 |
+
# ββ Neo4j Community 5.24.0 + APOC 5.24.0 βββββββββββββββββββββββββββββββββββββ
|
|
|
|
| 47 |
ENV NEO4J_HOME=/opt/neo4j
|
| 48 |
ENV PATH="${NEO4J_HOME}/bin:${PATH}"
|
| 49 |
|
| 50 |
+
RUN wget -q "https://dist.neo4j.org/neo4j-community-5.24.0-unix.tar.gz" \
|
| 51 |
+
&& tar -xzf "neo4j-community-5.24.0-unix.tar.gz" -C /opt \
|
| 52 |
+
&& mv "/opt/neo4j-community-5.24.0" /opt/neo4j \
|
| 53 |
+
&& rm "neo4j-community-5.24.0-unix.tar.gz" \
|
| 54 |
+
&& rm -rf /opt/neo4j/data \
|
| 55 |
+
&& wget -q "https://github.com/neo4j-labs/apoc/releases/download/5.24.0/apoc-5.24.0-core.jar" \
|
| 56 |
+
-O /opt/neo4j/plugins/apoc-5.24.0-core.jar
|
|
|
|
|
|
|
|
|
|
| 57 |
|
| 58 |
# Neo4j configuration β listen on all interfaces, use /data for persistence
|
| 59 |
RUN { \
|