about summary refs log tree commit diff
diff options
context:
space:
mode:
authormaride <maride@darknebu.la>2019-04-14 11:29:55 +0200
committermaride <maride@darknebu.la>2019-04-14 11:29:55 +0200
commit228c97d55af2846553763d7726795662a827e541 (patch)
treed2fddd24007ea870944ef7cb1485fe44bc82a595
parent715fb688cf599896050bc0adcf711074fb94b73f (diff)
Add required go packages
-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