32 lines
1.2 KiB
Docker
32 lines
1.2 KiB
Docker
|
FROM kowhai/ckan-base:2.9
|
||
|
|
||
|
LABEL maintainer="brett@kowh.ai"
|
||
|
|
||
|
# Set timezone
|
||
|
ARG TZ
|
||
|
RUN echo $TZ > /etc/timezone
|
||
|
RUN cp /usr/share/zoneinfo/$TZ /etc/localtime
|
||
|
|
||
|
# Install any extensions needed by your CKAN instance
|
||
|
# (Make sure to add the plugins to CKAN__PLUGINS in the .env file)
|
||
|
# For instance:
|
||
|
#RUN pip install -e git+https://github.com/ckan/ckanext-pages.git#egg=ckanext-pages && \
|
||
|
# pip install -e git+https://github.com/ckan/ckanext-dcat.git@v0.0.6#egg=ckanext-dcat && \
|
||
|
# pip install -r https://raw.githubusercontent.com/ckan/ckanext-dcat/v0.0.6/requirements.txt
|
||
|
|
||
|
# Install the extension(s) you wrote for your own project
|
||
|
# RUN pip install -e git+https://github.com/your-org/ckanext-your-extension.git@v1.0.0#egg=ckanext-your-extension
|
||
|
|
||
|
# Apply any patches needed to CKAN core or any of the built extensions (not the
|
||
|
# runtime mounted ones)
|
||
|
# See https://github.com/okfn/docker-ckan#applying-patches
|
||
|
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
|