about summary refs log tree commit diff
diff options
context:
space:
mode:
authorEmile <hanemile@protonmail.com>2020-01-29 22:57:06 +0100
committerEmile <hanemile@protonmail.com>2020-01-29 22:57:06 +0100
commit71cd5b136a3aaecd996254831252160ac612bc97 (patch)
tree6fa6ee15c47ad681ff4b128cf0703a45b2bab1fc
parent6c2c5ebc9e2e0468db107529a3f18ecb2c067f25 (diff)
fixed typos
-rw-r--r--Dockerfile4
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