From b4f93da73e2aa1e89937a96e6e62e83a80556e11 Mon Sep 17 00:00:00 2001 From: FL42 <46161216+fl42@users.noreply.github.com> Date: Wed, 23 Oct 2024 23:19:43 +0200 Subject: [PATCH] fix: PATH --- docker/Dockerfile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/docker/Dockerfile b/docker/Dockerfile index 872b077..e7d4b64 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -76,6 +76,9 @@ RUN \ COPY requirements.txt /opt RUN pip3 install -r /opt/requirements.txt +# Add /opt/wireshark-custom/bin/ to PATH +ENV PATH /opt/wireshark-custom/bin:$PATH + # Copy and compile (Cython) code ENV PYTHONPATH /app WORKDIR /app