diff options
author | Malfurious <m@lfurio.us> | 2023-03-30 02:46:43 -0400 |
---|---|---|
committer | dusoleil <howcansocksbereal@gmail.com> | 2023-03-31 22:23:34 -0400 |
commit | de95a406075f87704ac3a884f3750d3656058891 (patch) | |
tree | 6c47c96e7a5ff33152726c3febaf7c492e0793a4 /docker-entry.sh | |
parent | 5b0e6af99723b362052c9f5bbba1743170848f8d (diff) | |
download | sploit-de95a406075f87704ac3a884f3750d3656058891.tar.gz sploit-de95a406075f87704ac3a884f3750d3656058891.zip |
Add sploit Docker image
Signed-off-by: Malfurious <m@lfurio.us>
Signed-off-by: dusoleil <howcansocksbereal@gmail.com>
Diffstat (limited to 'docker-entry.sh')
-rwxr-xr-x | docker-entry.sh | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/docker-entry.sh b/docker-entry.sh new file mode 100755 index 0000000..3d3e770 --- /dev/null +++ b/docker-entry.sh @@ -0,0 +1,15 @@ +#!/bin/sh +ENTRYPOINT=sploit + +# We want to support scuba as a convenient front-end for invoking containers. +# However, scuba doesn't actually pass arguments to the image entrypoint +# correctly. Instead, it treats the entrypoint as a shell equivalent, and +# instructs it to run its own generated command script. We can't determine +# whether scuba is invoked with a command or a multi-line alias, so we just grab +# the last line from command.sh for simplicity and pass it as args to the real +# entrypoint. +if [ -d /.scuba ]; then + $ENTRYPOINT $(tail -n 1 /.scuba/command.sh) +else + $ENTRYPOINT $@ +fi |