33 lines
1.3 KiB
Docker
33 lines
1.3 KiB
Docker
FROM docker.io/bitnami/minideb:buster
|
|
LABEL maintainer "Bitnami <containers@bitnami.com>"
|
|
|
|
ENV HOME="/" \
|
|
OS_ARCH="amd64" \
|
|
OS_FLAVOUR="debian-10" \
|
|
OS_NAME="linux"
|
|
|
|
COPY prebuildfs /
|
|
# Install required system packages and dependencies
|
|
RUN install_packages acl ca-certificates curl gzip jq libc6 procps tar zlib1g
|
|
RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "java" "11.0.12-0" --checksum 14c1274e93b1135d4d1b82ad7985fc2fa7f5d0689b6da18e0c94da37407cd4ea
|
|
RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "neo4j" "4.3.0-2" --checksum f42a4456a1b35bc61850c0da36a2968f52806876530aab6a107cbe82e8b7cdbf
|
|
RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "gosu" "1.14.0-0" --checksum 3e6fc37ca073b10a73a804d39c2f0c028947a1a596382a4f8ebe43dfbaa3a25e
|
|
RUN chmod g+rwX /opt/bitnami
|
|
|
|
COPY rootfs /
|
|
RUN /opt/bitnami/scripts/neo4j/postunpack.sh
|
|
ENV BITNAMI_APP_NAME="neo4j" \
|
|
BITNAMI_IMAGE_VERSION="4.3.0-debian-10-r62" \
|
|
NEO4J_BOLT_PORT_NUMBER="7687" \
|
|
NEO4J_HOST="" \
|
|
NEO4J_HTTPS_PORT_NUMBER="7473" \
|
|
NEO4J_HTTP_PORT_NUMBER="7474" \
|
|
NEO4J_PASSWORD="bitnami" \
|
|
PATH="/opt/bitnami/java/bin:/opt/bitnami/neo4j/bin:/opt/bitnami/common/bin:$PATH"
|
|
|
|
EXPOSE 7473 7474 8756
|
|
|
|
USER 1001
|
|
ENTRYPOINT [ "/opt/bitnami/scripts/neo4j/entrypoint.sh" ]
|
|
CMD [ "/opt/bitnami/scripts/neo4j/run.sh" ]
|