Update Dockerfile.dev

Add extensions:
ckanext-harvest
ckanext-resourcedictionary
ckanext-geoview
ckanext-pages
ckanext-pdfview
This commit is contained in:
mjanez 2023-03-02 17:36:19 +01:00 committed by GitHub
parent 1ea8f7c9d6
commit 14b6ae04d7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 19 additions and 4 deletions

View File

@ -27,15 +27,30 @@ RUN if ! [ /usr/share/zoneinfo/${TZ} -ef /etc/localtime ]; then \
# pip3 install -U requests[security] # pip3 install -U requests[security]
### Harvester ### ### Harvester ###
#RUN pip3 install -e 'git+https://github.com/ckan/ckanext-harvest.git@master#egg=ckanext-harvest' && \ RUN pip3 install -e 'git+https://github.com/ckan/ckanext-harvest.git@master#egg=ckanext-harvest' && \
# pip3 install -r ${APP_DIR}/src/ckanext-harvest/pip-requirements.txt pip3 install -r ${APP_DIR}/src/ckanext-harvest/pip-requirements.txt
# will also require gather_consumer and fetch_consumer processes running (please see https://github.com/ckan/ckanext-harvest) # will also require gather_consumer and fetch_consumer processes running (please see https://github.com/ckan/ckanext-harvest)
### resourcedictionary ###
RUN pip3 install -e 'git+https://github.com/keitaroinc/ckanext-resourcedictionary.git#egg=ckanext-resourcedictionary' && \
pip3 install -r ${APP_DIR}/src/ckanext-resourcedictionary/requirements.txt
### Geoview ###
RUN pip3 install -e git+https://github.com/ckan/ckanext-geoview.git#egg=ckanext-geoview
### Spatial ###
# RUN pip3 install -e git+https://github.com/ckan/ckanext-spatial.git#egg=ckanext-spatial && \
# pip3 install -r ${APP_DIR}/src/ckanext-spatial/pip-requirements.txt
### Scheming ### ### Scheming ###
#RUN pip3 install -e 'git+https://github.com/ckan/ckanext-scheming.git@master#egg=ckanext-scheming' #RUN pip3 install -e 'git+https://github.com/ckan/ckanext-scheming.git@master#egg=ckanext-scheming'
### Pages ### ### Pages ###
#RUN pip3 install -e git+https://github.com/ckan/ckanext-pages.git#egg=ckanext-pages RUN pip3 install -e git+https://github.com/ckan/ckanext-pages.git#egg=ckanext-pages
### PDFView ###
RUN pip3 install -e git+https://github.com/ckan/ckanext-pdfview.git#egg=ckanext-pdfview
### DCAT ### ### DCAT ###
#RUN pip3 install -e git+https://github.com/ckan/ckanext-dcat.git@v0.0.6#egg=ckanext-dcat && \ #RUN pip3 install -e git+https://github.com/ckan/ckanext-dcat.git@v0.0.6#egg=ckanext-dcat && \
@ -55,4 +70,4 @@ RUN for d in $APP_DIR/patches/*; do \
cd $SRC_DIR/`basename "$d"` && echo "$0: Applying patch $f to $SRC_DIR/`basename $d`"; patch -p1 < "$f" ; \ cd $SRC_DIR/`basename "$d"` && echo "$0: Applying patch $f to $SRC_DIR/`basename $d`"; patch -p1 < "$f" ; \
done ; \ done ; \
fi ; \ fi ; \
done done