Add github package to container image

This commit is contained in:
Moto Ishizawa 2020-04-13 22:29:48 +09:00
parent 3ccc51433f
commit ab28dde0ec
1 changed files with 1 additions and 0 deletions

View File

@ -13,6 +13,7 @@ RUN go mod download
COPY main.go main.go
COPY api/ api/
COPY controllers/ controllers/
COPY github/ github/
# Build
RUN CGO_ENABLED=0 GOOS=linux GOARCH=amd64 GO111MODULE=on go build -a -o manager main.go