docker-ckan/ckan/Dockerfile.dev

74 lines
3.1 KiB
Docker
Raw Normal View History

2023-02-15 15:51:23 +01:00
FROM ckan/ckan-base:ckan-2.10.0-dev
2022-07-13 18:36:14 +02:00
# Set up environment variables
ENV APP_DIR=/srv/app
ENV TZ=UTC
RUN echo ${TZ} > /etc/timezone
# Make sure both files are not exactly the same
RUN if ! [ /usr/share/zoneinfo/${TZ} -ef /etc/localtime ]; then \
cp /usr/share/zoneinfo/${TZ} /etc/localtime ;\
fi ;
# Install any extensions needed by your CKAN instance
2022-07-19 14:23:54 +02:00
# - Make sure to add the plugins to CKAN__PLUGINS in the .env file
# - Also make sure all extra configuration options are added to the CKAN config file (ckan.ini)
# This can be done by creating an overriding start_ckan_dev_development.sh file:
# (https://github.com/ckan/ckan-docker-base/blob/main/ckan-2.9/dev/setup/start_ckan_development.sh) ie: updating the 'ckan config-tool' lines
2022-07-19 14:43:53 +02:00
# For more on config-tool please see https://docs.ckan.org/en/latest/maintaining/cli.html#config-tool-tool-for-editing-options-in-a-ckan-config-file
2022-07-19 14:23:54 +02:00
# or using Crudini (https://github.com/pixelb/crudini)
#
2022-07-13 18:36:14 +02:00
# For instance:
2022-07-19 14:23:54 +02:00
#
### XLoader ###
#RUN pip3 install -e 'git+https://github.com/ckan/ckanext-xloader.git@master#egg=ckanext-xloader' && \
# pip3 install -r ${APP_DIR}/src/ckanext-xloader/requirements.txt && \
# pip3 install -U requests[security]
### Harvester ###
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
2022-07-19 14:23:54 +02:00
# 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
2022-07-19 14:23:54 +02:00
### Scheming ###
#RUN pip3 install -e 'git+https://github.com/ckan/ckanext-scheming.git@master#egg=ckanext-scheming'
### 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
2022-07-19 14:23:54 +02:00
### DCAT ###
#RUN pip3 install -e git+https://github.com/ckan/ckanext-dcat.git@v0.0.6#egg=ckanext-dcat && \
# pip3 install -r https://raw.githubusercontent.com/ckan/ckanext-dcat/v0.0.6/requirements.txt
2022-07-13 18:36:14 +02:00
# Clone the extension(s) your are writing for your own project in the `src` folder
# to get them mounted in this image at runtime
# Apply any patches needed to CKAN core or any of the built extensions (not the
2022-07-19 16:09:55 +02:00
# runtime mounted ones)
2022-07-13 18:36:14 +02:00
COPY patches ${APP_DIR}/patches
RUN for d in $APP_DIR/patches/*; do \
if [ -d $d ]; then \
for f in `ls $d/*.patch | sort -g`; do \
cd $SRC_DIR/`basename "$d"` && echo "$0: Applying patch $f to $SRC_DIR/`basename $d`"; patch -p1 < "$f" ; \
done ; \
fi ; \
done