Created
December 2, 2020 23:13
-
-
Save thadguidry/1a24d4eeadc0677a58de20695b6c8961 to your computer and use it in GitHub Desktop.
Dockerfile for OpenRefine Development version
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM maven:3.6.0-jdk-8-alpine | |
MAINTAINER [email protected] | |
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