X-Git-Url: https://gerrit.onap.org/r/gitweb?a=blobdiff_plain;f=local-setup%2Fsrc%2Fmain%2Fdocker%2Fjanusgraph%2FDockerfile;fp=local-setup%2Fsrc%2Fmain%2Fdocker%2Fjanusgraph%2FDockerfile;h=0000000000000000000000000000000000000000;hb=c16c682a91e278e2a12dfe29eddf071e9d5b4a7d;hp=76c3628ba5a5ab3d3b6c8431b1387c42bdd70a1f;hpb=d558eff0ec55a90a95860527161f2fa268e94d4b;p=aai%2Ftest-config.git diff --git a/local-setup/src/main/docker/janusgraph/Dockerfile b/local-setup/src/main/docker/janusgraph/Dockerfile deleted file mode 100644 index 76c3628..0000000 --- a/local-setup/src/main/docker/janusgraph/Dockerfile +++ /dev/null @@ -1,37 +0,0 @@ -FROM alpine:3.7 - -WORKDIR app/ - -RUN apk add --no-cache \ - bash \ - openjdk8 \ - unzip \ - wget - -ENV PATH $PATH:/usr/lib/jvm/java-1.8-openjdk/bin/ - -ARG JANUS_VERSION=0.2.0 -ARG JANUS_ARTIFACT=janusgraph-${JANUS_VERSION}-hadoop2 - -RUN wget -q --show-progress --progress=bar:force:noscroll \ - http://github.com/JanusGraph/janusgraph/releases/download/v${JANUS_VERSION}/${JANUS_ARTIFACT}.zip && \ - unzip ${JANUS_ARTIFACT}.zip && \ - rm ${JANUS_ARTIFACT}.zip && \ - mv ${JANUS_ARTIFACT} janusgraph - -# WARN: Instruction above takes long time. Make best effort to insert additional commands below this comment - -CMD ["./entrypoint.sh"] - -COPY entrypoint.sh . - -RUN chmod +x entrypoint.sh - -ARG USER=janusz -ARG GROUP=aai - -RUN addgroup ${GROUP} && adduser -D ${USER} ${GROUP} && chown -R ${USER}:${GROUP} . - -USER ${USER}:${GROUP} - -HEALTHCHECK --interval=40s --timeout=10s --retries=3 CMD janusgraph/bin/janusgraph.sh status \ No newline at end of file