-
Notifications
You must be signed in to change notification settings - Fork 2
/
Dockerfile
46 lines (38 loc) · 1.36 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
#############################################
# Build
#############################################
FROM --platform=$BUILDPLATFORM golang:1.23-alpine AS build
RUN apk upgrade --no-cache --force
RUN apk add --update build-base make git curl
WORKDIR /go/src/github.com/webdevops/azure-k8s-autopilot
# Dependencies
COPY go.mod go.sum .
RUN go mod download
COPY . .
RUN make test
ARG TARGETOS TARGETARCH
# kubectl
RUN curl -LO https://storage.googleapis.com/kubernetes-release/release/$(curl -s https://storage.googleapis.com/kubernetes-release/release/stable.txt)/bin/${TARGETOS}/${TARGETARCH}/kubectl
RUN chmod +x kubectl
# Compile
RUN GOOS=${TARGETOS} GOARCH=${TARGETARCH} make build
#############################################
# Test
#############################################
FROM gcr.io/distroless/static AS test
USER 0:0
WORKDIR /app
COPY --from=build /go/src/github.com/webdevops/azure-k8s-autopilot/azure-k8s-autopilot .
COPY --from=build /go/src/github.com/webdevops/azure-k8s-autopilot/kubectl .
RUN ["./azure-k8s-autopilot", "--help"]
RUN ["./kubectl", "version", "--client=true", "--output=yaml"]
#############################################
# Final
#############################################
FROM gcr.io/distroless/static AS final-static
ENV LOG_JSON=1 \
LEASE_ENABLE=true
WORKDIR /
COPY --from=test /app .
USER 1000:1000
ENTRYPOINT ["/azure-k8s-autopilot"]