diff options
-rw-r--r-- | Dockerfile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Dockerfile b/Dockerfile index dcae29f..456775c 100644 --- a/Dockerfile +++ b/Dockerfile @@ -11,7 +11,7 @@ RUN go get github.com/gliderlabs/ssh && \ go get github.com/gorilla/mux # Build -RUN go build -o ssh-grab-passwords +RUN go build -o ssh-grab-passwords ./... # Drop privs RUN adduser -u 1337 -D jail @@ -19,4 +19,4 @@ RUN chmod 000 /home/jail EXPOSE 2222 -ENTRYPOINT su -c ./ssh-grab-passwords jail +ENTRYPOINT su -c ./ssh-grab-passwords \ No newline at end of file |