mepm applcm initial code
[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
16
17 ENV GOPROXY https://goproxy.io
18 ENV GO111MODULE on
19
20 RUN apk update && apk upgrade && \
21     apk add --no-cache bash git openssh
22
23 WORKDIR /go/cache
24
25 ADD go.mod .
26 ADD go.sum .
27 RUN go mod download
28
29 WORKDIR /go/release
30 RUN mkdir -p /go/release/application/packages
31
32 ADD . .
33
34 RUN GOOS=linux CGO_ENABLED=0 go build -ldflags="-s -w" -installsuffix cgo -o app cmd/broker/main.go
35
36 RUN cp app start.sh /
37
38 EXPOSE 8081
39
40 CMD ["/start.sh"]
41
42