Skip to content

Instantly share code, notes, and snippets.

@thadguidry
Created December 2, 2020 23:13
Show Gist options
  • Save thadguidry/1a24d4eeadc0677a58de20695b6c8961 to your computer and use it in GitHub Desktop.
Save thadguidry/1a24d4eeadc0677a58de20695b6c8961 to your computer and use it in GitHub Desktop.
Dockerfile for OpenRefine Development version
FROM maven:3.6.0-jdk-8-alpine
MAINTAINER thadguidry@gmail.com
RUN apk add --no-cache git
RUN git clone https://github.com/OpenRefine/OpenRefine.git
RUN OpenRefine/refine build
RUN mkdir /mnt/refine
VOLUME /mnt/refine
EXPOSE 3333
CMD ["OpenRefine/refine", "-i", "0.0.0.0", "-d", "/mnt/refine"]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment