Skip to content

Commit

Permalink
Merge pull request #470 from nicolasjulian/fix-dockerfile
Browse files Browse the repository at this point in the history
Fix missing dockerfile syntax
  • Loading branch information
ChrisTruncer authored Apr 20, 2020
2 parents 7fd270a + a1e1532 commit f907c36
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Python/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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 && \
Expand All @@ -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"]

0 comments on commit f907c36

Please sign in to comment.