Hello all,
Since yesterday, I have an issue with install on Docker:
suricata: error while loading shared libraries: librte_graph.so.23: cannot open shared object file: No such file or directory
Here is the extract of my Suricata Dockerfile:
FROM jasonish/suricata:latest
ENV TZ=Etc/UTC
RUN dnf update -y && \
dnf install -y epel-release dnf-plugins-core && \
dnf install -y tzdata vim bash bash-completion jq inotify-tools logrotate crontabs && \
ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && \
echo $TZ > /etc/timezone && \
yum clean all
...
Thanks for help
A./