Dockerfile changed using multistage
[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 as builder
16
17 ENV GOPROXY https://goproxy.io
18 ENV GO111MODULE on
19 ENV HOME=/go/release
20
21 RUN mkdir -p $HOME
22
23 WORKDIR /go/cache
24
25 ADD go.mod .
26 ADD go.sum .
27 RUN go mod download
28
29 WORKDIR $HOME
30
31 RUN mkdir charts
32 RUN mkdir kubeconfig
33
34 ADD . .
35
36 RUN GOOS=linux CGO_ENABLED=0 go build -ldflags="-s -w" -installsuffix cgo -o app cmd/helm/main.go
37
38 FROM golang:1.13.4-alpine3.10
39
40 RUN mkdir -p /go/release
41
42 ENV HOME=/go/release
43 ENV APP_HOME=/go/release
44 ENV UID=166
45 ENV GID=166
46 ENV USER_NAME=ealtuser
47 ENV GROUP_NAME=ealtgroup
48
49 RUN apk update &&\
50     apk add shadow &&\
51     groupadd -r -g $GID $GROUP_NAME &&\
52     useradd -r -u $UID -g $GID -d $HOME -s /sbin/nologin -c "Docker image user" $USER_NAME &&\
53     chown -R $USER_NAME:$GROUP_NAME $HOME
54
55 WORKDIR $APP_HOME
56
57 USER $USER_NAME
58
59 COPY --chown=ealtuser:ealtgroup --from=builder $HOME/app $APP_HOME
60 COPY --chown=ealtuser:ealtgroup --from=builder $HOME/start.sh $APP_HOME
61
62 RUN mkdir charts
63 RUN mkdir kubeconfig
64
65 RUN chmod 750 $HOME &&\
66     chmod 550 $HOME/app &&\
67     chmod 550 $HOME/start.sh
68
69 EXPOSE 50051
70
71 ENTRYPOINT ["./app"]