From 9c6436ee41655127cd1db41bc6f845daa50286a9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=C3=A3o=20Duarte?= Date: Fri, 10 Jan 2025 16:54:47 +0000 Subject: [PATCH] Update Dockerfile to have jq installed --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 8e527f9..e07ead5 100644 --- a/Dockerfile +++ b/Dockerfile @@ -14,9 +14,9 @@ RUN if [ $(command -v apt-get) ]; then \ fi RUN if [ $(command -v apt-get) ]; then \ apt-get update -y --fix-missing && \ - apt-get install -y shared-mime-info; \ + apt-get install -y jq shared-mime-info; \ else \ - microdnf install -y shared-mime-info; \ + microdnf install -y jq shared-mime-info; \ fi RUN echo "logstash ALL=(ALL) NOPASSWD: ALL" > /etc/sudoers.d/logstash && \ chmod 0440 /etc/sudoers.d/logstash