Disable JQ, see if it still passes tests

pull/1009/head
dgtlmoon 2 years ago
parent 8fb146f3e4
commit 937c9346e2

@ -26,6 +26,11 @@ RUN pip install --target=/dependencies -r /requirements.txt
RUN pip install --target=/dependencies playwright~=1.26 \
|| echo "WARN: Failed to install Playwright. The application can still run, but the Playwright option will be disabled."
RUN pip install --target=/dependencies jq~=1.3 \
|| echo "WARN: Failed to install JQ. The application can still run, but the Jq: filter option will be disabled."
# Final image stage
FROM python:3.8-slim

@ -19,7 +19,8 @@ chardet > 2.3.0
wtforms ~= 3.0
jsonpath-ng ~= 1.5.3
jq ~= 1.3.0
# jq not available on Windows so must be installed manually
# Notification library
apprise ~= 1.1.0

Loading…
Cancel
Save