This repository has been archived by the owner on Nov 5, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Dockerfile
53 lines (38 loc) · 1.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
FROM teamserverless/license-check:0.3.6 as license-check
FROM golang:1.11 as build
RUN mkdir -p /go/src/github.com/openfaas-incubator/faas-federation/
ENV CGO_ENABLED=0
WORKDIR /go/src/github.com/openfaas-incubator/faas-federation
COPY .git .git
COPY handlers handlers
COPY routing routing
COPY testing testing
COPY types types
COPY vendor vendor
COPY version version
COPY main.go main.go
COPY --from=license-check /license-check /usr/bin/
RUN license-check -path ./ --verbose=false "Alex Ellis" "OpenFaaS Author(s)"
RUN gofmt -l -d $(find . -type f -name '*.go' -not -path "./vendor/*") \
&& go test $(go list ./... | grep -v /vendor/) -cover \
&& VERSION=$(git describe --all --exact-match `git rev-parse HEAD` | grep tags | sed 's/tags\///') \
&& GIT_COMMIT=$(git rev-list -1 HEAD) \
&& CGO_ENABLED=0 GOOS=linux go build --ldflags "-s -w \
-X github.com/openfaas/faas-federation/version.GitCommit=${GIT_COMMIT}\
-X github.com/openfaas/faas-federation/version.Version=${VERSION}" \
-a -installsuffix cgo -o faas-federation .
# Release stage
FROM alpine:3.10 as ship
LABEL org.label-schema.license="MIT" \
org.label-schema.vcs-url="https://github.com/openfaas/faas-federation" \
org.label-schema.vcs-type="Git" \
org.label-schema.name="openfaas/faas-federation" \
org.label-schema.vendor="openfaas" \
org.label-schema.docker.schema-version="1.0"
RUN apk --no-cache add ca-certificates
WORKDIR /root/
EXPOSE 8080
ENV http_proxy ""
ENV https_proxy ""
COPY --from=build /go/src/github.com/openfaas-incubator/faas-federation/faas-federation .
CMD ["./faas-federation"]