From f70fed2966cdba0b6ff336936c63a55c89168f31 Mon Sep 17 00:00:00 2001 From: Felix Lohmeier Date: Fri, 17 Nov 2017 16:46:37 +0100 Subject: [PATCH] Revert "removed urllib2 dependencies" This reverts commit 44fd7c4611765579595cd908d66ceac3cc10cf98. --- docker/Dockerfile | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/docker/Dockerfile b/docker/Dockerfile index 517e04c..37ec9b1 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -3,14 +3,18 @@ MAINTAINER felixlohmeier # The OpenRefine Python Client Library from PaulMakepeace provides an interface to communicating with an OpenRefine server. This fork extends the CLI with some options to create new OpenRefine projects from files. # Source: https://github.com/felixlohmeier/openrefine-client -# Install python, wget, unzip, curl and grep +# Install python, pip, wget, unzip, curl and grep RUN apk add --no-cache \ python \ + py-pip \ wget \ unzip \ curl \ grep +# Install dependency urllib2_file +RUN pip install urllib2_file==0.2.1 + # Download and build openrefine-client-master WORKDIR /app RUN wget --no-check-certificate https://github.com/felixlohmeier/openrefine-client/archive/master.zip