Skip to content

Commit 8e6531a

Browse files
committed
fix python watchdog package at 4.0.2 for now
1 parent c957061 commit 8e6531a

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

Dockerfiles/arkime.Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@ RUN export DEBARCH=$(dpkg --print-architecture) && \
148148
mkdir -p "${ARKIME_DIR}"/plugins && \
149149
curl -fsSL -o "${ARKIME_DIR}/plugins/ja4plus.${DEBARCH}.so" "$(echo "${ARKIME_JA4_SO_URL}" | sed "s/XXX/${DEBARCH}/g")" && \
150150
chmod 755 "${ARKIME_DIR}/plugins/ja4plus.${DEBARCH}.so" && \
151-
python3 -m pip install --break-system-packages --no-compile --no-cache-dir beautifulsoup4 pyzmq watchdog && \
151+
python3 -m pip install --break-system-packages --no-compile --no-cache-dir beautifulsoup4 pyzmq watchdog==4.0.2 && \
152152
ln -sfr $ARKIME_DIR/bin/npm /usr/local/bin/npm && \
153153
ln -sfr $ARKIME_DIR/bin/node /usr/local/bin/node && \
154154
ln -sfr $ARKIME_DIR/bin/npx /usr/local/bin/npx && \

Dockerfiles/file-monitor.Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -159,7 +159,7 @@ RUN export BINARCH=$(uname -m | sed 's/x86_64/amd64/' | sed 's/aarch64/arm64/')
159159
python-magic \
160160
stream-zip \
161161
supervisor \
162-
watchdog \
162+
watchdog==4.0.2 \
163163
yara-python && \
164164
curl -fsSL -o /usr/local/bin/supercronic "${SUPERCRONIC_URL}${BINARCH}" && \
165165
chmod +x /usr/local/bin/supercronic && \

Dockerfiles/filebeat.Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ RUN export EVTXARCH=$(uname -m | sed 's/arm64/aarch64/') && \
101101
unar \
102102
unzip \
103103
xz-utils && \
104-
python3 -m pip install --no-compile --no-cache-dir patool entrypoint2 pyunpack python-magic ordered-set supervisor watchdog && \
104+
python3 -m pip install --no-compile --no-cache-dir patool entrypoint2 pyunpack python-magic ordered-set supervisor watchdog==4.0.2 && \
105105
curl -fsSL -o /usr/local/bin/supercronic "${SUPERCRONIC_URL}${BINARCH}" && \
106106
chmod +x /usr/local/bin/supercronic && \
107107
curl -fsSL -o /usr/local/bin/yq "${YQ_URL}${BINARCH}" && \

Dockerfiles/pcap-monitor.Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ RUN apt-get -q update && \
6868
python-magic \
6969
pyzmq \
7070
requests \
71-
watchdog && \
71+
watchdog==4.0.2 && \
7272
groupadd --gid ${DEFAULT_GID} ${PGROUP} && \
7373
useradd -M --uid ${DEFAULT_UID} --gid ${DEFAULT_GID} ${PUSER}
7474

Dockerfiles/suricata.Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ RUN export BINARCH=$(uname -m | sed 's/x86_64/amd64/' | sed 's/aarch64/arm64/')
108108
apt-get install -q -y --no-install-recommends -t bookworm-backports \
109109
suricata=${SURICATA_VERSION_PATTERN} \
110110
suricata-update && \
111-
python3 -m pip install --break-system-packages --no-compile --no-cache-dir watchdog && \
111+
python3 -m pip install --break-system-packages --no-compile --no-cache-dir watchdog==4.0.2 && \
112112
curl -fsSL -o /usr/local/bin/supercronic "${SUPERCRONIC_URL}${BINARCH}" && \
113113
chmod +x /usr/local/bin/supercronic && \
114114
curl -fsSL -o /usr/bin/yq "${YQ_URL}${BINARCH}" && \

hedgehog-iso/config/hooks/normal/0169-pip-installs.hook.chroot

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,4 +20,4 @@ pip3 install --break-system-packages --no-compile --no-cache-dir --force-reinsta
2020
stix2 \
2121
stream-zip \
2222
taxii2-client \
23-
watchdog
23+
watchdog==4.0.2

0 commit comments

Comments
 (0)