forked from openfaas/faas-cli
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Dockerfile
81 lines (52 loc) · 2.04 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
FROM ghcr.io/openfaas/license-check:0.4.1 as license-check
# Build stage
FROM --platform=${BUILDPLATFORM:-linux/amd64} golang:1.20 as builder
ARG TARGETPLATFORM
ARG BUILDPLATFORM
ARG TARGETOS
ARG TARGETARCH
ARG GIT_COMMIT
ARG VERSION
ENV GO111MODULE=on
ENV GOFLAGS=-mod=vendor
ENV CGO_ENABLED=0
WORKDIR /usr/bin/
COPY --from=license-check /license-check /usr/bin/
WORKDIR /go/src/github.com/openfaas/faas-cli
COPY . .
# Run a gofmt and exclude all vendored code.
RUN test -z "$(gofmt -l $(find . -type f -name '*.go' -not -path "./vendor/*"))" || { echo "Run \"gofmt -s -w\" on your Golang code"; exit 1; }
# ldflags "-s -w" strips binary
# ldflags -X injects commit version into binary
RUN /usr/bin/license-check -path ./ --verbose=false "Alex Ellis" "OpenFaaS Author(s)" "OpenFaaS Ltd"
RUN CGO_ENABLED=0 GOOS=${TARGETOS} GOARCH=${TARGETARCH} \
go test $(go list ./... | grep -v /vendor/ | grep -v /template/|grep -v /build/|grep -v /sample/) -cover
RUN GOOS=${TARGETOS} GOARCH=${TARGETARCH} CGO_ENABLED=0 \
go build --ldflags "-s -w \
-X github.com/openfaas/faas-cli/version.GitCommit=${GIT_COMMIT} \
-X github.com/openfaas/faas-cli/version.Version=${VERSION} \
-X github.com/openfaas/faas-cli/commands.Platform=${TARGETARCH}" \
-o faas-cli
# CICD stage
FROM --platform=${TARGETPLATFORM:-linux/amd64} alpine:3.18 as root
ARG REPO_URL
LABEL org.opencontainers.image.source $REPO_URL
RUN apk --no-cache add ca-certificates git
WORKDIR /home/app
COPY --from=builder /go/src/github.com/openfaas/faas-cli/faas-cli /usr/bin/
ENV PATH=$PATH:/usr/bin/
ENTRYPOINT [ "faas-cli" ]
# Release stage
FROM --platform=${TARGETPLATFORM:-linux/amd64} alpine:3.16.2 as release
ARG REPO_URL
LABEL org.opencontainers.image.source $REPO_URL
RUN apk --no-cache add ca-certificates git
RUN addgroup -S app \
&& adduser -S -g app app \
&& apk add --no-cache ca-certificates
WORKDIR /home/app
COPY --from=builder /go/src/github.com/openfaas/faas-cli/faas-cli /usr/bin/
RUN chown -R app:app ./
USER app
ENV PATH=$PATH:/usr/bin/
ENTRYPOINT ["faas-cli"]