about summary refs log tree commit diff
path: root/Dockerfile
diff options
context:
space:
mode:
Diffstat (limited to 'Dockerfile')
-rw-r--r--Dockerfile5
1 files changed, 3 insertions, 2 deletions
diff --git a/Dockerfile b/Dockerfile
index 416da85..c0e236f 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -1,11 +1,12 @@
 FROM golang:1.10-alpine
 
 # Setup
-COPY main.go .
+COPY src/* .
 
 # Install libs
 RUN apk add git
-RUN go get github.com/gliderlabs/ssh
+RUN go get github.com/gliderlabs/ssh && \
+    go get github.com/gorilla/mux
 
 # Build
 RUN go build -o ssh-grab-passwords