Copied 3.5 to 3.8

This commit is contained in:
BFG 2024-09-20 14:29:18 +02:00
parent 6870071012
commit 06ef0ec846
1 changed files with 19 additions and 0 deletions

19
3.8/Dockerfile Normal file
View File

@ -0,0 +1,19 @@
FROM openjdk:8-jre-alpine
LABEL maintainer="felixlohmeier@opencultureconsulting.com"
# OpenRefine 3.5.0
ENV OR_URL https://github.com/OpenRefine/OpenRefine/releases/download/3.5.0/openrefine-linux-3.5.0.tar.gz
WORKDIR /app
RUN set -xe \
&& apk add --no-cache bash curl grep tar \
&& curl -sSL ${OR_URL} | tar xz --strip 1
VOLUME /data
WORKDIR /data
EXPOSE 3333
ENTRYPOINT ["/app/refine"]
CMD ["-i", "0.0.0.0", "-d", "/data"]