about summary refs log tree commit diff
diff options
context:
space:
mode:
authorEmile <hanemile@protonmail.com>2019-10-09 16:36:00 +0200
committerEmile <hanemile@protonmail.com>2019-10-09 16:36:00 +0200
commit8aebf1c287dc308a027f975557472af0f8998986 (patch)
tree790d37a58f7e38306893d8db65d2e7da32da8ad9
parentea3dd00b2d2577ede18304db87bb7e4a543f0feb (diff)
added another dependency to the dockerfile
-rw-r--r--Dockerfile5
1 files changed, 3 insertions, 2 deletions
diff --git a/Dockerfile b/Dockerfile
index cbaa812..5a347f2 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -18,7 +18,8 @@ RUN go get \
 	github.com/gorilla/mux \
 	github.com/sirupsen/logrus \
 	google.golang.org/grpc/codes \
-	google.golang.org/grpc/status
+	google.golang.org/grpc/status \
+    github.com/containerd/containerd/errdefs
 
 # Vendor cleanup - thanks golang.
 # see: https://github.com/moby/moby/issues/28269
@@ -36,4 +37,4 @@ COPY hosted /workdir/hosted
 # and build them
 RUN go build -o /workdir/companion src/*.go
 
-ENTRYPOINT [ "/workdir/companion" ]
\ No newline at end of file
+ENTRYPOINT [ "/workdir/companion" ]