diff options
-rw-r--r-- | Dockerfile | 5 |
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" ] |