K8s helm plugin code
[ealt-edge.git] / mecm / mepm / applcm / k8shelm / build / Dockerfile
1 # Copyright 2020 Huawei Technologies Co., Ltd.
2 #
3 # Licensed under the Apache License, Version 2.0 (the "License");
4 # you may not use this file except in compliance with the License.
5 # You may obtain a copy of the License at
6 #
7 #     http://www.apache.org/licenses/LICENSE-2.0
8 #
9 # Unless required by applicable law or agreed to in writing, software
10 # distributed under the License is distributed on an "AS IS" BASIS,
11 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 # See the License for the specific language governing permissions and
13 # limitations under the License.
14
15 FROM golang:1.13.4-alpine3.10
16
17 ENV GOPROXY https://goproxy.io
18 ENV GO111MODULE on
19
20 WORKDIR /go/cache
21
22 ADD go.mod .
23 ADD go.sum .
24 RUN go mod download
25
26 WORKDIR /go/release
27
28 RUN mkdir charts
29 RUN mkdir kubeconfig
30
31 ADD . .
32
33 RUN GOOS=linux CGO_ENABLED=0 go build -ldflags="-s -w" -installsuffix cgo -o app cmd/helm/main.go
34
35 RUN cp app start.sh /
36
37 EXPOSE 50051
38
39 CMD ["/start.sh"]
40