Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion Dockerfile.rocky9
Original file line number Diff line number Diff line change
Expand Up @@ -746,6 +746,7 @@ ARG MODERN_WSGIDAV
ARG UPGRADE_PARAMIKO
ARG ENABLE_CLOUD
ARG ENABLE_PYTEST
ARG ENABLE_WORKFLOWS
ARG OPENSTACKSDK_VERSION_OVERRIDE
ARG TRAC_ADMIN_PATH

Expand Down Expand Up @@ -885,7 +886,10 @@ RUN if [ -n "${TRAC_ADMIN_PATH}" ]; then \
fi;

# Modules required for workflows
RUN if [ "${WITH_PY3}" = "True" ]; then \
# NOTE: the bleach library used by nbconvert is abandoned
# https://github.com/jupyter/nbconvert/issues/2289
# and has security issues, too, so only install if explicitly requested.
RUN if [ "${ENABLE_WORKFLOWS}" = "True" ]; then \
pip3 install --no-cache-dir nbformat nbconvert papermill; \
fi;

Expand Down
Loading