about summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--Dockerfile5
1 files changed, 4 insertions, 1 deletions
diff --git a/Dockerfile b/Dockerfile
index 6441bf9..cbaa812 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -15,7 +15,10 @@ RUN go get \
 	github.com/docker/docker/api/types/network \
 	github.com/docker/docker/client \
 	github.com/docker/go-connections/nat \
-	github.com/gorilla/mux
+	github.com/gorilla/mux \
+	github.com/sirupsen/logrus \
+	google.golang.org/grpc/codes \
+	google.golang.org/grpc/status
 
 # Vendor cleanup - thanks golang.
 # see: https://github.com/moby/moby/issues/28269