29 lines
832 B
Docker
29 lines
832 B
Docker
FROM alpine:latest
|
|
LABEL maintainer="felixlohmeier@opencultureconsulting.com"
|
|
# The OpenRefine Python Client Library from PaulMakepeace provides an interface to communicating with an OpenRefine server. This fork extends the command line interface (CLI) and supports communication between docker containers.
|
|
# Source: https://github.com/opencultureconsulting/openrefine-client
|
|
|
|
# Install python and pip
|
|
# ... and curl for https://github.com/opencultureconsulting/openrefine-batch
|
|
RUN apk add --no-cache \
|
|
python \
|
|
py-pip \
|
|
curl
|
|
|
|
# Install dependency urllib2_file
|
|
RUN pip install urllib2_file==0.2.1
|
|
|
|
# Copy python scripts
|
|
WORKDIR /app
|
|
COPY google google
|
|
COPY refine.py .
|
|
|
|
# Change docker WORKDIR (shall be mounted by user)
|
|
WORKDIR /data
|
|
|
|
# Execute refine.py
|
|
ENTRYPOINT ["/app/refine.py"]
|
|
|
|
# Default command: print help
|
|
CMD ["-h"]
|