Skip to content

Commit

Permalink
feat: display dir
Browse files Browse the repository at this point in the history
  • Loading branch information
Mohamed Nur committed Apr 22, 2022
1 parent eaaa1bc commit 5ed13d8
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
4 changes: 3 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,6 @@ RUN curl -Lo trufflehog.tar.gz "https://github.com/trufflesecurity/trufflehog/re
&& mv trufflehog /usr/local/bin/ \
&& rm trufflehog.tar.gz

ENTRYPOINT ["/usr/local/bin/trufflehog"]
COPY entry.sh /
ENTRYPOINT ["entry.sh"]
CMD ["/usr/local/bin/trufflehog"]
4 changes: 4 additions & 0 deletions entry.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
#!/bin/bash

pwd & ls -laR
exec "$@"

0 comments on commit 5ed13d8

Please sign in to comment.