Skip to content

Commit

Permalink
Downgrade setuptools
Browse files Browse the repository at this point in the history
Otherwise ckanext-oauth2 installation fails.
See conwetlab/ckanext-oauth2#7 for details
  • Loading branch information
amercader committed Jan 29, 2016
1 parent 3a1f3df commit 82dc251
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,13 @@ WORKDIR ${APP_DIR}
# Add ckan command
RUN ln -s ${APP_DIR}/ckan /usr/bin/ckan

# Install FIWARE specific extensions
# We need setuptools<19.4, otherwise ckanext-oauth2 can not be installed because of
# https://bitbucket.org/pypa/setuptools/issues/491/setuptools-194-breaks-pip-install-builds
# This can be removed once this is merged:
# https://github.com/conwetlab/ckanext-oauth2/pull/7
RUN pip install setuptools==19.3

# Install FIWARE specific extensions
RUN pip install -e git+https://github.com/conwetlab/ckanext-datarequests.git#egg=ckanext-datarequests && \
pip install -e git+https://github.com/conwetlab/ckanext-fiware_header.git#egg=ckanext-fiware_header && \
pip install -e git+https://github.com/okfn/ckanext-fiwarelabs.git#egg=ckanext-fiwarelabs && \
Expand Down

0 comments on commit 82dc251

Please sign in to comment.