[mod] source
This commit is contained in:
parent
c8eba3c84f
commit
88a24bf094
1 changed files with 5 additions and 4 deletions
|
@ -4,8 +4,9 @@
|
||||||
ARG JDK_IMAGE=adoptopenjdk:11-jre-hotspot
|
ARG JDK_IMAGE=adoptopenjdk:11-jre-hotspot
|
||||||
ARG VERSION=4.2.0
|
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 URL=https://archive.apache.org/dist/jena/binaries/apache-jena-fuseki-${VERSION}.tar.gz
|
||||||
ENV BASE=/mnt/apache-fuseki
|
|
||||||
|
ENV BASE=/mnt/apache-jena-fuseki-${VERSION}
|
||||||
|
|
||||||
## VOLUME /mnt/
|
## VOLUME /mnt/
|
||||||
|
|
||||||
|
@ -13,11 +14,11 @@ RUN mkdir -p $BASE
|
||||||
|
|
||||||
WORKDIR $BASE
|
WORKDIR $BASE
|
||||||
|
|
||||||
RUN curl --silent --show-error --output fuseki-server.jar $URL
|
RUN curl -L $URL | tar xz
|
||||||
|
|
||||||
EXPOSE 3030
|
EXPOSE 3030
|
||||||
|
|
||||||
ENTRYPOINT [ "/usr/bin/java", "-jar", "fuseki-server.jar" ]
|
ENTRYPOINT [ "bin/fuseki-server" ]
|
||||||
|
|
||||||
LABEL org.opencontainers.image.source="https://repository.apache.org/content/repositories/releases/org/apache/jena/jena-fuseki-server/${VERSION}"
|
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.vendor="Quodatum Ltd"
|
||||||
|
|
Loading…
Add table
Reference in a new issue