docker-ckan/ckan/Dockerfile

98 lines
4.4 KiB
Docker
Raw Normal View History

FROM ghcr.io/mjanez/ckan-spatial-base:2.10.5-py3.10
2023-09-27 17:17:03 +02:00
LABEL maintainer="mnl.janez@gmail.com"
2021-05-13 08:34:14 +02:00
# Set up environment variables
2023-09-28 13:36:09 +02:00
ENV APP_DIR=/srv/app
ENV TZ=UTC
# Set working directory
WORKDIR ${APP_DIR}
2023-07-20 13:19:53 +02:00
# requirements.txt files fixed until next releases
2023-10-02 09:41:25 +02:00
COPY req_fixes req_fixes
2023-07-20 13:19:53 +02:00
# CKAN configuration & extensions
## XLoader - 1.0.1 ##
## Harvest - v1.5.6 (Worker with supervisor) ##
## Geoview - v0.1.0 ##
## Spatial - v2.1.1 ##
## DCAT - v1.8.0 (Latest stable version of ckanext-dcat with minor fixes) ##
## Scheming - release-3.0.0 ##
## Resource dictionary - v1.0.1 (mjanez/Fixed version) ##
## Pages - v0.5.2 ##
## PDFView - 0.0.8 ##
## Fluent - v1.0.1 (mjanez/Forked stable version) ##
2024-07-30 10:30:44 +02:00
## Scheming DCAT - v3.2.2 (mjanez/GeoDCAT-AP/NTI-RISP extended version) ##
2023-05-02 14:47:10 +02:00
RUN echo ${TZ} > /etc/timezone && \
if ! [ /usr/share/zoneinfo/${TZ} -ef /etc/localtime ]; then cp /usr/share/zoneinfo/${TZ} /etc/localtime; fi && \
# Install patch utility
apt-get update && \
apt-get install -y patch && \
2023-05-02 14:47:10 +02:00
# Install CKAN extensions
echo "ckan/ckanext-xloader" && \
2023-09-28 13:36:09 +02:00
pip3 install --no-cache-dir -e git+https://github.com/ckan/ckanext-xloader.git@1.0.1#egg=ckanext-xloader && \
pip3 install --no-cache-dir -r ${APP_DIR}/src/ckanext-xloader/requirements.txt && \
pip3 install --no-cache-dir -U requests[security] && \
echo "ckan/ckanext-harvest" && \
pip3 install --no-cache-dir -e git+https://github.com/ckan/ckanext-harvest.git@v1.5.6#egg=ckanext-harvest && \
pip3 install --no-cache-dir -r ${APP_DIR}/src/ckanext-harvest/requirements.txt && \
echo "ckan/ckanext-geoview" && \
pip3 install --no-cache-dir -e git+https://github.com/ckan/ckanext-geoview.git@v0.1.0#egg=ckanext-geoview && \
echo "ckan/ckanext-spatial" && \
pip3 install --no-cache-dir -e git+https://github.com/ckan/ckanext-spatial.git@v2.1.1#egg=ckanext-spatial && \
pip3 install --no-cache-dir -r ${APP_DIR}/req_fixes/ckanext-spatial/requirements.txt && \
echo "mjanez/ckanext-dcat (GeoDCAT-AP extended version)" && \
pip3 install --no-cache-dir -e git+https://github.com/mjanez/ckanext-dcat.git@v1.8.0#egg=ckanext-dcat && \
2023-09-28 13:36:09 +02:00
pip3 install --no-cache-dir -r ${APP_DIR}/src/ckanext-dcat/requirements.txt && \
echo "ckan/ckanext-scheming" && \
2023-09-28 13:36:09 +02:00
pip3 install --no-cache-dir -e git+https://github.com/ckan/ckanext-scheming.git@release-3.0.0#egg=ckanext-scheming && \
echo "mjanez/ckanext-resourcedictionary" && \
2023-09-28 13:36:09 +02:00
pip3 install --no-cache-dir -e git+https://github.com/mjanez/ckanext-resourcedictionary.git@v1.0.1#egg=ckanext-resourcedictionary && \
echo "ckan/ckanext-pages" && \
pip3 install --no-cache-dir -e git+https://github.com/ckan/ckanext-pages.git@v0.5.2#egg=ckanext-pages && \
echo "ckan/ckanext-pdfview" && \
2023-09-28 13:36:09 +02:00
pip3 install --no-cache-dir -e git+https://github.com/ckan/ckanext-pdfview.git@0.0.8#egg=ckanext-pdfview && \
echo "mjanez/ckanext-fluent" && \
pip3 install --no-cache-dir -e git+https://github.com/mjanez/ckanext-fluent.git@v1.0.1#egg=ckanext-fluent && \
2024-03-21 14:48:50 +01:00
echo "mjanez/ckanext-schemingdcat" && \
2024-07-30 10:30:44 +02:00
pip3 install --no-cache-dir -e git+https://github.com/mjanez/ckanext-schemingdcat.git@v3.2.2#egg=ckanext_schemingdcat && \
pip3 install --no-cache-dir -r ${APP_DIR}/src/ckanext-schemingdcat/requirements.txt && \
# Remove system cache
apt-get clean && \
rm -rf /var/lib/apt/lists/*
# Used to configure the container environment by setting environment variables, creating users, running initialization scripts, .etc
COPY docker-entrypoint.d/* /docker-entrypoint.d/
2023-08-22 16:35:42 +02:00
# Update who.ini with PROXY_CKAN_LOCATION
2023-09-28 13:36:09 +02:00
COPY setup/who.ini ./
# Apply any patches needed to CKAN core
2023-10-02 09:41:25 +02:00
COPY patches patches
RUN for d in $APP_DIR/patches/*; do \
2024-04-12 14:49:05 +02:00
if [ -d $d ]; then \
for f in `ls $d/*.patch | sort -g`; do \
cd $SRC_DIR/`basename "$d"` && \
if patch -R --dry-run -p1 < "$f"; then \
echo "$0: Patch $f has already been applied or reversed, skipping..."; \
else \
echo "$0: Applying patch $f to $SRC_DIR/`basename $d`"; \
sed -i 's/\r$//' "$f" && \
patch -p1 < "$f" ; \
fi \
done ; \
fi ; \
done
# Workers
## Update start_ckan.sh with custom workers
COPY setup/start_ckan.sh.override ${APP_DIR}/start_ckan.sh
RUN chmod +x ${APP_DIR}/start_ckan.sh
## Load workers supervisor configuration
COPY setup/workers/* /etc/supervisord.d/
# Start CKAN
2024-03-20 14:01:31 +01:00
CMD ["/bin/sh", "-c", "$APP_DIR/start_ckan.sh"]