1
2
mirror of https://github.com/vimagick/dockerfiles synced 2024-06-30 18:51:24 +00:00
dockerfiles/openrefine/Dockerfile

21 lines
426 B
Docker
Raw Normal View History

2016-06-05 15:17:34 +00:00
#
# Dockerfile for openrefine
#
2021-12-28 09:45:18 +00:00
FROM openjdk:17-bullseye
2020-09-07 07:39:17 +00:00
MAINTAINER EasyPi Software Foundation
2016-06-05 15:17:34 +00:00
2022-07-22 12:58:58 +00:00
ARG OPENREFINE_VERSION=3.6.0
ARG OPENREFINE_URL=https://oss.sonatype.org/service/local/artifact/maven/content?r=releases&g=org.openrefine&a=openrefine&v=${OPENREFINE_VERSION}&c=linux&p=tar.gz
2016-06-05 15:17:34 +00:00
WORKDIR /app
2022-07-22 12:58:58 +00:00
RUN curl -sSL "${OPENREFINE_URL}" | tar xz --strip 1
2016-06-05 15:17:34 +00:00
2016-07-06 09:04:44 +00:00
VOLUME /data
WORKDIR /data
2016-06-05 15:17:34 +00:00
EXPOSE 3333
2016-07-06 09:04:44 +00:00
ENTRYPOINT ["/app/refine"]