thedocks/fuseki/Dockerfile

27 lines
784 B
Docker
Raw Normal View History

2021-11-01 11:13:34 +00:00
# fuseki with openjdk 11 docker image
# @created 2021-11
# author="Andy Bunce"
ARG JDK_IMAGE=adoptopenjdk:11-jre-hotspot
ARG VERSION=4.2.0
2021-11-02 21:57:08 +00:00
ENV URL=https://archive.apache.org/dist/jena/binaries/apache-jena-fuseki-${VERSION}.tar.gz
ENV BASE=/mnt/apache-jena-fuseki-${VERSION}
2021-11-01 11:13:34 +00:00
## VOLUME /mnt/
RUN mkdir -p $BASE
WORKDIR $BASE
2021-11-02 21:57:08 +00:00
RUN curl -L $URL | tar xz
2021-11-01 11:13:34 +00:00
EXPOSE 3030
2021-11-02 21:57:08 +00:00
ENTRYPOINT [ "bin/fuseki-server" ]
2021-11-01 11:13:34 +00:00
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}"