This repository has been archived by the owner on Jun 12, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Dockerfile
88 lines (68 loc) · 3.63 KB
/
Dockerfile
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
####################################################################################################
# Download dependencies and build
####################################################################################################
FROM golang:1.14.2-alpine3.11 AS dependencies
WORKDIR $GOPATH/src/github.com/caos/boom
# Runtime dependencies
RUN apk update && apk add git curl && \
mkdir /artifacts && \
curl -L "https://github.com/kubernetes-sigs/kustomize/releases/download/kustomize%2Fv3.4.0/kustomize_v3.4.0_linux_amd64.tar.gz" |tar xvz && \
mv ./kustomize /artifacts/kustomize && \
curl -LO https://storage.googleapis.com/kubernetes-release/release/v1.17.0/bin/linux/amd64/kubectl && \
chmod +x ./kubectl && \
mv ./kubectl /artifacts/kubectl && \
curl -L "https://get.helm.sh/helm-v2.12.0-linux-amd64.tar.gz" |tar xvz && \
mv linux-amd64/helm /artifacts/helm && \
chmod +x /artifacts/helm && \
go get -u github.com/go-delve/delve/cmd/dlv
# copy all sourcecode from the current repository
COPY ./go.mod ./go.sum ./
RUN go mod download
# Copy the go source
COPY cmd cmd
COPY api api
COPY controllers controllers
COPY internal internal
RUN CGO_ENABLED=0 GOOS=linux go build -o /gen cmd/gen-executable/*.go
# ####################################################################################################
# Create base runtime
# ####################################################################################################
FROM alpine:3.11 AS runtime
RUN apk update && apk add bash ca-certificates
COPY --from=dependencies /artifacts /usr/local/bin/
COPY --from=dependencies /gen /
COPY config/crd /crd
COPY dashboards /dashboards
RUN /gen
# ####################################################################################################
# Build debug binary
# ####################################################################################################
FROM dependencies AS debug-build
# RUN CGO_ENABLED=0 GOOS=linux go build -ldflags "-s -w" -o boom main.go
RUN CGO_ENABLED=0 GOOS=linux go build -gcflags 'all=-N -l' -o /boom cmd/boom/*.go
# ####################################################################################################
# Create debug runtime
# ####################################################################################################
FROM runtime AS debug
COPY --from=dependencies /go/bin/dlv /usr/local/bin/
COPY --from=debug-build /boom /
ENTRYPOINT [ "dlv", "exec", "--api-version", "2", "--headless", "--accept-multiclient", "--listen", ":2345", "/boom", "--"]
# ####################################################################################################
# Run tests
# ####################################################################################################
FROM dependencies AS test
RUN CGO_ENABLED=0 GOOS=linux go test -short $(go list ./... | grep -v /vendor/)
# RUN go test -race -short $(go list ./... | grep -v /vendor/)
# RUN go test -msan -short $(go list ./... | grep -v /vendor/)
# ####################################################################################################
# Run build
# ####################################################################################################
FROM dependencies AS build
# RUN CGO_ENABLED=0 GOOS=linux go build -ldflags "-s -w" -o boom main.go
RUN CGO_ENABLED=0 GOOS=linux go build -o /boom cmd/boom/*.go
# ####################################################################################################
# Create production runtime
# ####################################################################################################
FROM runtime
COPY --from=build /boom /
ENTRYPOINT ["/boom"]