Skip to content

Commit

Permalink
added python watchdog library for #168
Browse files Browse the repository at this point in the history
  • Loading branch information
mmguero committed Mar 29, 2023
1 parent 08727f2 commit 2220393
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Dockerfiles/file-monitor.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ RUN sed -i "s/bullseye main/bullseye main contrib non-free/g" /etc/apt/sources.l
python3-requests \
python3-zmq \
rsync && \
pip3 install clamd supervisor yara-python python-magic psutil pycryptodome && \
pip3 install clamd supervisor yara-python python-magic psutil pycryptodome watchdog && \
curl -fsSLO "$SUPERCRONIC_URL" && \
echo "${SUPERCRONIC_SHA1SUM} ${SUPERCRONIC}" | sha1sum -c - && \
chmod +x "$SUPERCRONIC" && \
Expand Down
2 changes: 1 addition & 1 deletion Dockerfiles/filebeat.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ RUN apt-get -q update && \
unar \
unzip \
xz-utils && \
python3 -m pip install patool entrypoint2 pyunpack python-magic ordered-set supervisor && \
python3 -m pip install patool entrypoint2 pyunpack python-magic ordered-set supervisor watchdog && \
curl -fsSLO "$SUPERCRONIC_URL" && \
echo "${SUPERCRONIC_SHA1SUM} ${SUPERCRONIC}" | sha1sum -c - && \
chmod +x "$SUPERCRONIC" && \
Expand Down
2 changes: 1 addition & 1 deletion Dockerfiles/pcap-monitor.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ RUN apt-get -q update && \
vim-tiny && \
apt-get clean && \
rm -rf /var/lib/apt/lists/* && \
pip3 install --no-cache-dir opensearch-py pyzmq pyinotify python-magic requests && \
pip3 install --no-cache-dir opensearch-py pyzmq pyinotify python-magic requests watchdog && \
groupadd --gid ${DEFAULT_GID} ${PGROUP} && \
useradd -M --uid ${DEFAULT_UID} --gid ${DEFAULT_GID} ${PUSER}

Expand Down
4 changes: 4 additions & 0 deletions Dockerfiles/suricata.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -90,13 +90,17 @@ RUN sed -i "s/bullseye main/bullseye main contrib non-free/g" /etc/apt/sources.l
moreutils \
procps \
psmisc \
python3-pip \
python3-ruamel.yaml \
python3-setuptools \
python3-wheel \
python3-zmq \
rsync \
supervisor \
vim-tiny \
tini \
zlib1g && \
pip3 install --no-cache-dir watchdog && \
curl -fsSLO "$SUPERCRONIC_URL" && \
echo "${SUPERCRONIC_SHA1SUM} ${SUPERCRONIC}" | sha1sum -c - && \
chmod +x "$SUPERCRONIC" && \
Expand Down

0 comments on commit 2220393

Please sign in to comment.