about summary refs log tree commit diff
diff options
context:
space:
mode:
authormaride <maride@darknebu.la>2019-10-06 16:03:45 +0200
committermaride <maride@darknebu.la>2019-10-06 16:03:45 +0200
commitd3ff098bc87be739a139c07e19f4606c3e10a8b4 (patch)
tree0b4604899e5a67ea2804319132978b3a67aa47e8
parentaa9d6793abf64d0762904b043243222a6db03c4b (diff)
Fix docker vendor fuckup
-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