mirror of
https://github.com/vimagick/dockerfiles.git
synced 2025-01-24 05:17:06 +02:00
16 lines
302 B
Docker
16 lines
302 B
Docker
|
#
|
||
|
# Dockerfile for openrefine-reconcile-csv
|
||
|
#
|
||
|
|
||
|
FROM java:8-jre-alpine
|
||
|
|
||
|
MAINTAINER kev <noreply@easypi.info>
|
||
|
|
||
|
ADD http://okfnlabs.org/reconcile-csv/dist/reconcile-csv-0.1.2.jar /app/
|
||
|
|
||
|
WORKDIR /data
|
||
|
|
||
|
EXPOSE 8000
|
||
|
|
||
|
CMD java -jar /app/reconcile-csv-0.1.2.jar "${CSV_FILE}" "${SEARCH_COLUMN}" "${ID_COLUMN}"
|