From a1e1532065133db30c09cd48367ca14a7b5fd947 Mon Sep 17 00:00:00 2001 From: Nicolas Julian Date: Sun, 12 Apr 2020 20:38:30 +0700 Subject: [PATCH] Fix missing dockerfile sytax --- Python/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Python/Dockerfile b/Python/Dockerfile index 2e8587d6..039b76bb 100644 --- a/Python/Dockerfile +++ b/Python/Dockerfile @@ -19,7 +19,7 @@ RUN git clone https://github.com/FortyNorthSecurity/EyeWitness.git WORKDIR /home/$user/EyeWitness -RUN cd setup && \ +RUN cd Python/setup && \ ./setup.sh && \ cd .. && \ chown -R $user:$user /home/$user/EyeWitness && \ @@ -28,4 +28,4 @@ RUN cd setup && \ USER $user -ENTRYPOINT ["python3", "EyeWitness.py", "-d", "/tmp/EyeWitness/results", "--no-prompt"] +ENTRYPOINT ["python3", "Python/EyeWitness.py", "-d", "/tmp/EyeWitness/results", "--no-prompt"]