Merge "mecm-mepm uninstall playbook added"
[ealt-edge.git] / mep / mepserver / docker / 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.14.2-alpine3.11
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 ADD . .
29 RUN apk update && apk add --no-cache musl-dev gcc build-base
30
31 RUN GOOS=linux CGO_ENABLED=0 go build -buildmode=pie -ldflags="-s -w" -installsuffix cgo -o app main.go
32
33 RUN cp -r conf/ / && cp app start.sh /
34
35 EXPOSE 8088
36
37 CMD ["/start.sh"]