From 221d7da37965c549e5e46be97d9ce2399bc041de Mon Sep 17 00:00:00 2001 From: Felix Lohmeier Date: Wed, 1 Feb 2017 22:23:50 +0100 Subject: [PATCH] repair Dockerfile directory --- Dockerfile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Dockerfile b/Dockerfile index 68718f5..bb4ed3f 100644 --- a/Dockerfile +++ b/Dockerfile @@ -16,18 +16,18 @@ RUN apk add --no-cache \ # Install dependency urllib2_file RUN pip install urllib2_file==0.2.1 -# Download and build refine-client-py +# Download and build openrefine-client-master WORKDIR /app RUN wget --no-check-certificate https://github.com/felixlohmeier/openrefine-client/archive/master.zip RUN unzip master.zip && rm master.zip -RUN python refine-client-py-master/setup.py build -RUN python refine-client-py-master/setup.py install +RUN python openrefine-client-master/setup.py build +RUN python openrefine-client-master/setup.py install # Change docker WORKDIR (shall be mounted) WORKDIR /data # Execute refine.py -ENTRYPOINT ["/app/refine-client-py-master/refine.py"] +ENTRYPOINT ["/app/openrefine-client-master/refine.py"] # Default command: print help CMD ["-h"]