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