diff --git a/nifi/Dockerfile b/nifi/Dockerfile index 6eb722818..49e4092b8 100644 --- a/nifi/Dockerfile +++ b/nifi/Dockerfile @@ -204,6 +204,13 @@ COPY --chown=${STACKABLE_USER_UID}:0 nifi/stackable/bin /stackable/bin COPY --chown=${STACKABLE_USER_UID}:0 nifi/licenses /licenses COPY --chown=${STACKABLE_USER_UID}:0 nifi/python /stackable/python +# The nipyapi is required until NiFi 2.0.x for the ReportingTaskJob +# This can be removed once the 1.x.x line is removed +# Note: Keep this in sync with the version installed in testing-tools! (See the requirements.txt file) +# Find the latest version here: https://pypi.org/project/nipyapi/ +# renovate: datasource=pypi packageName=nipyapi +ENV NIPYAPI_VERSION=0.22.0 + RUN <