Merge branch 'ckan-2.9.9' of https://github.com/mjanez/ckan-docker into ckan-2.9.9
This commit is contained in:
commit
03d45b3b4f
|
@ -12,7 +12,7 @@ COPY req_fixes ${APP_DIR}/req_fixes
|
|||
### Harvester - v1.5.1 ###
|
||||
### Geoview - v0.0.20 ###
|
||||
### Spatial - v2.0.0 ### fixed requirements.txt
|
||||
### DCAT - 1.0.0-geodcatap (GeoDCAT-AP extended version) ###
|
||||
### DCAT - v1.1.0-geodcatap (GeoDCAT-AP extended version) ###
|
||||
### Scheming - release-3.0.0 ###
|
||||
### Resource dictionary - 1.0.1 ###
|
||||
### Pages - v0.5.2 ###
|
||||
|
@ -23,24 +23,24 @@ RUN echo ${TZ} > /etc/timezone && \
|
|||
if ! [ /usr/share/zoneinfo/${TZ} -ef /etc/localtime ]; then cp /usr/share/zoneinfo/${TZ} /etc/localtime ; fi && \
|
||||
# Install CKAN extensions
|
||||
echo "ckan/ckanext-xloader" && \
|
||||
pip3 install -e 'git+https://github.com/ckan/ckanext-xloader.git@1.0.1#egg=ckanext-xloader' && \
|
||||
pip3 install -e git+https://github.com/ckan/ckanext-xloader.git@1.0.1#egg=ckanext-xloader && \
|
||||
pip3 install -r ${APP_DIR}/src/ckanext-xloader/requirements.txt && \
|
||||
pip3 install -U requests[security] && \
|
||||
echo "ckan/ckanext-harvest" && \
|
||||
pip3 install -e 'git+https://github.com/ckan/ckanext-harvest.git@v1.5.1#egg=ckanext-harvest' && \
|
||||
pip3 install -e git+https://github.com/ckan/ckanext-harvest.git@v1.5.1#egg=ckanext-harvest && \
|
||||
pip3 install -r ${APP_DIR}/src/ckanext-harvest/pip-requirements.txt && \
|
||||
echo "ckan/ckanext-geoview" && \
|
||||
pip3 install -e 'git+https://github.com/ckan/ckanext-geoview.git@v0.0.20#egg=ckanext-geoview' && \
|
||||
pip3 install -e git+https://github.com/ckan/ckanext-geoview.git@v0.0.20#egg=ckanext-geoview && \
|
||||
echo "ckan/ckanext-spatial" && \
|
||||
pip3 install -e 'git+https://github.com/ckan/ckanext-spatial.git@v2.0.0#egg=ckanext-spatial' && \
|
||||
pip3 install -e git+https://github.com/ckan/ckanext-spatial.git@v2.0.0#egg=ckanext-spatial && \
|
||||
pip3 install -r ${APP_DIR}/req_fixes/ckanext-spatial_requirements.txt && \
|
||||
echo "mjanez/ckanext-dcat (GeoDCAT-AP extended version)" && \
|
||||
pip3 install -e git+https://github.com/mjanez/ckanext-dcat.git@1.0.0-geodcatap#egg=ckanext-dcat && \
|
||||
pip3 install -r https://raw.githubusercontent.com/mjanez/ckanext-dcat/master/requirements.txt && \
|
||||
pip3 install -e git+https://github.com/mjanez/ckanext-dcat.git@v1.1.0-geodcatap#egg=ckanext-dcat && \
|
||||
pip3 install -r ${APP_DIR}/src/ckanext-dcat/requirements.txt && \
|
||||
echo "ckan/ckanext-scheming" && \
|
||||
pip3 install -e git+https://github.com/ckan/ckanext-scheming.git@release-3.0.0#egg=ckanext-scheming && \
|
||||
echo "mjanez/ckanext-resourcedictionary" && \
|
||||
pip3 install -e 'git+https://github.com/mjanez/ckanext-resourcedictionary.git@1.0.1#egg=ckanext-resourcedictionary' && \
|
||||
pip3 install -e git+https://github.com/mjanez/ckanext-resourcedictionary.git@1.0.1#egg=ckanext-resourcedictionary && \
|
||||
echo "ckan/ckanext-pages" && \
|
||||
pip3 install -e git+https://github.com/ckan/ckanext-pages.git@v0.5.2#egg=ckanext-pages && \
|
||||
echo "ckan/ckanext-pdfview" && \
|
||||
|
|
Loading…
Reference in New Issue