From 51a1d7a4bfb94010ccd625bd92ee1860b63fdb0b Mon Sep 17 00:00:00 2001 From: Einar Felipe Lanfranco Date: Fri, 11 Nov 2022 13:50:58 -0300 Subject: [PATCH] Update Dockerfile Good morning, we found an error in sudoers file, it must be /etc/ not /opt/ ! --- .docker/intelmq-full/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.docker/intelmq-full/Dockerfile b/.docker/intelmq-full/Dockerfile index de785b2..08bd9d9 100644 --- a/.docker/intelmq-full/Dockerfile +++ b/.docker/intelmq-full/Dockerfile @@ -47,7 +47,7 @@ COPY ./intelmq-api /opt/intelmq-api RUN useradd -d /opt/intelmq -U -s /bin/bash intelmq \ && adduser intelmq sudo \ - && echo "%sudo ALL=(ALL) NOPASSWD:ALL" >> /opt/sudoers \ + && echo "%sudo ALL=(ALL) NOPASSWD:ALL" >> /etc/sudoers \ && sudo chown -R intelmq:intelmq /opt/intelmq \ && mkdir -p /opt/intelmq_persistence \ && sudo chown -R intelmq:intelmq /opt/intelmq_persistence