Skip to content

Commit

Permalink
added keycloak and noanonaccess in runtime stage - Update Dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
johnny-space authored Oct 14, 2024
1 parent 44f01e7 commit 4525619
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion sddi-odp/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -259,7 +259,7 @@ ENV CKAN__PLUGINS "image_view text_view recline_view recline_map_view recline_gr
webpage_view openapi_view datastore xloader ogdmunich pages showcase resource_proxy geo_view geojson_view wmts_view shp_view \
harvest ckan_harvester csw_harvester dcat dcatde \
dcat_rdf_harvester dcat_json_harvester dcat_json_interface structured_data \
spatial_metadata spatial_query scheming_datasets keycloak envvars"
spatial_metadata spatial_query scheming_datasets keycloak noanonaccess envvars"

# Extra env for compatibility with ckan/base Docker images for downstream k8s
ENV CKAN_INI=${APP_DIR}/production.ini
Expand Down Expand Up @@ -375,6 +375,15 @@ RUN set -ex && \
# Copy additional files
COPY --chown=ckan:ckan who.ini ${APP_DIR}/who.ini

## ckanext-keycloak #################################################################
RUN set -ex && \
pip install -r ${APP_DIR}/ext_wheels/ckanext-keycloak.txt && \
pip install --no-index --find-links=${APP_DIR}/ext_wheels ckanext-keycloak

# ckanext-noanonaccess #############################################################
RUN set -ex && \
pip install --no-index --find-links=${APP_DIR}/ext_wheels ckanext-noanonaccess

# install supervisor ########################################################
RUN set -ex && \
apt-get update && \
Expand Down

0 comments on commit 4525619

Please sign in to comment.