about summary refs log tree commit diff
path: root/Dockerfile
blob: 5a347f231ad3d8b21fbeea4ca4ebd3ad5243078f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
FROM golang

# Install libraries
RUN go get \
	github.com/docker/distribution/reference \
	github.com/docker/go-units \
	github.com/gogo/protobuf/proto \
	github.com/opencontainers/go-digest \
	github.com/opencontainers/image-spec/specs-go/v1 \
	github.com/pkg/errors \
	golang.org/x/net/context/ctxhttp \
	golang.org/x/net/proxy \
	github.com/docker/docker/api/types \
	github.com/docker/docker/api/types/container \
	github.com/docker/docker/api/types/network \
	github.com/docker/docker/client \
	github.com/docker/go-connections/nat \
	github.com/gorilla/mux \
	github.com/sirupsen/logrus \
	google.golang.org/grpc/codes \
	google.golang.org/grpc/status \
    github.com/containerd/containerd/errdefs

# Vendor cleanup - thanks golang.
# see: https://github.com/moby/moby/issues/28269
RUN rm -rf \
    $GOPATH/src/github.com/docker/docker/vendor \
    $GOPATH/src/github.com/docker/distribution/vendor

# Create workdir
RUN mkdir /workdir
WORKDIR /workdir

# Copy our sources
COPY src /workdir/src
COPY hosted /workdir/hosted
# and build them
RUN go build -o /workdir/companion src/*.go

ENTRYPOINT [ "/workdir/companion" ]