2023-06-22 09:58:53 +02:00
|
|
|
FROM ghcr.io/mjanez/ckan-base-spatial:ckan-2.9.9
|
2023-09-27 17:17:03 +02:00
|
|
|
LABEL maintainer="mnl.janez@gmail.com"
|
2021-05-13 08:34:14 +02:00
|
|
|
|
2023-03-27 12:26:51 +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-03-22 10:54:57 +01:00
|
|
|
|
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
|
|
|
|
2023-03-22 10:54:57 +01:00
|
|
|
# Extensions
|
2023-07-20 13:19:53 +02:00
|
|
|
### XLoader - 1.0.1 ###
|
2023-03-23 13:51:30 +01:00
|
|
|
### Harvester - v1.5.1 ###
|
2023-03-22 10:54:57 +01:00
|
|
|
### Geoview - v0.0.20 ###
|
2023-07-20 13:19:53 +02:00
|
|
|
### Spatial - v2.0.0 ### fixed requirements.txt
|
2023-09-25 09:53:45 +02:00
|
|
|
### DCAT - v1.2.0-geodcatap (GeoDCAT-AP/NTI-RISP extended version) ###
|
2023-08-09 10:51:04 +02:00
|
|
|
### Scheming - release-3.0.0 ###
|
2023-09-18 18:01:05 +02:00
|
|
|
### Resource dictionary - v1.0.1 ###
|
2023-10-02 12:36:07 +02:00
|
|
|
### Pages - v0.5.2 ###
|
2023-07-20 13:19:53 +02:00
|
|
|
### PDFView - 0.0.8 ###
|
2023-10-11 11:49:22 +02:00
|
|
|
### Fluent - v1.0.1 (Forked stable version) ###
|
2023-09-25 09:53:45 +02:00
|
|
|
### Scheming DCAT - v2.0.0 (GeoDCAT-AP/NTI-RISP extended version) ###
|
2023-07-03 13:55:56 +02:00
|
|
|
### SPARQL Interface - 2.0.1 ###
|
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 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] && \
|
2023-04-13 14:10:40 +02:00
|
|
|
echo "ckan/ckanext-harvest" && \
|
2023-09-28 13:36:09 +02:00
|
|
|
pip3 install --no-cache-dir -e git+https://github.com/ckan/ckanext-harvest.git@v1.5.1#egg=ckanext-harvest && \
|
|
|
|
pip3 install --no-cache-dir -r ${APP_DIR}/src/ckanext-harvest/pip-requirements.txt && \
|
2023-04-13 14:10:40 +02:00
|
|
|
echo "ckan/ckanext-geoview" && \
|
2023-09-28 13:36:09 +02:00
|
|
|
pip3 install --no-cache-dir -e git+https://github.com/ckan/ckanext-geoview.git@v0.0.20#egg=ckanext-geoview && \
|
2023-04-13 14:10:40 +02:00
|
|
|
echo "ckan/ckanext-spatial" && \
|
2023-09-28 13:36:09 +02:00
|
|
|
pip3 install --no-cache-dir -e git+https://github.com/ckan/ckanext-spatial.git@v2.0.0#egg=ckanext-spatial && \
|
|
|
|
pip3 install --no-cache-dir -r ${APP_DIR}/req_fixes/ckanext-spatial_requirements.txt && \
|
2023-04-13 14:10:40 +02:00
|
|
|
echo "mjanez/ckanext-dcat (GeoDCAT-AP extended version)" && \
|
2023-09-28 13:36:09 +02:00
|
|
|
pip3 install --no-cache-dir -e git+https://github.com/mjanez/ckanext-dcat.git@v1.2.0-geodcatap#egg=ckanext-dcat && \
|
|
|
|
pip3 install --no-cache-dir -r ${APP_DIR}/src/ckanext-dcat/requirements.txt && \
|
2023-08-09 10:51:04 +02:00
|
|
|
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 && \
|
2023-04-13 14:10:40 +02:00
|
|
|
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 && \
|
2023-10-02 12:36:07 +02:00
|
|
|
echo "ckan/ckanext-pages" && \
|
|
|
|
pip3 install --no-cache-dir -e git+https://github.com/ckan/ckanext-pages.git@v0.5.2#egg=ckanext-pages && \
|
2023-04-13 14:10:40 +02:00
|
|
|
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 && \
|
2023-10-11 11:49:22 +02:00
|
|
|
echo "mjanez/ckanext-fluent" && \
|
|
|
|
pip3 install --no-cache-dir -e git+https://github.com/mjanez/ckanext-fluent.git@v1.0.1#egg=ckanext-fluent && \
|
2023-08-22 16:35:42 +02:00
|
|
|
echo "mjanez/ckanext-scheming_dcat" && \
|
2023-09-28 13:36:09 +02:00
|
|
|
pip3 install --no-cache-dir -e git+https://github.com/mjanez/ckanext-scheming_dcat.git@v2.0.0#egg=ckanext_scheming_dcat && \
|
|
|
|
pip3 install --no-cache-dir -r https://raw.githubusercontent.com/mjanez/ckanext-scheming_dcat/v2.0.0/requirements.txt
|
2023-03-22 10:54:57 +01:00
|
|
|
|
|
|
|
# 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 ./
|
2023-04-13 14:10:40 +02:00
|
|
|
|
2023-03-22 10:54:57 +01:00
|
|
|
# Apply any patches needed to CKAN core
|
2023-10-02 09:41:25 +02:00
|
|
|
COPY patches patches
|
2023-03-22 10:54:57 +01:00
|
|
|
|
|
|
|
RUN for d in $APP_DIR/patches/*; do \
|
|
|
|
if [ -d $d ]; then \
|
2023-10-02 09:41:25 +02:00
|
|
|
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 ; \
|
2023-03-22 10:54:57 +01:00
|
|
|
done
|
|
|
|
|
2023-09-28 13:36:09 +02:00
|
|
|
CMD ["/bin/sh", "-c", "$APP_DIR/start_ckan.sh"]
|