thedocks/fuseki/Dockerfile

26 lines
885 B
Docker

# fuseki with openjdk 11 docker image
# @created 2021-11
# author="Andy Bunce"
ARG JDK_IMAGE=adoptopenjdk:11-jre-hotspot
ARG VERSION=4.2.0
ENV URL=https://repository.apache.org/content/repositories/releases/org/apache/jena/jena-fuseki-server/${VERSION}/jena-fuseki-server-${VERSION}.jar
ENV BASE=/mnt/apache-fuseki
## VOLUME /mnt/
RUN mkdir -p $BASE
WORKDIR $BASE
RUN curl --silent --show-error --output fuseki-server.jar $URL
EXPOSE 3030
ENTRYPOINT [ "/usr/bin/java", "-jar", "fuseki-server.jar" ]
LABEL org.opencontainers.image.source="https://repository.apache.org/content/repositories/releases/org/apache/jena/jena-fuseki-server/${VERSION}"
LABEL org.opencontainers.image.vendor="Quodatum Ltd"
LABEL org.opencontainers.image.licenses="Apache-2.0"
LABEL com.quodatum.basex-docker.basex="${VERSION}"
LABEL com.quodatum.basex-docker.jdk="${JDK_IMAGE}"