blob: dc26b04a2ac3a7bc24c4cdbb8ca6cbabb268fe39 [file] [log] [blame]
Dinesh Belwalkar01217962019-05-23 21:51:16 +00001# copyright 2018-present Open Networking Foundation
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# docker build -t opencord/device-management:latest .
16# docker build -t 10.90.0.101:30500/opencord/kafka-topic-exporter:latest .
17
Dinesh Belwalkar41229602019-06-21 16:58:06 +000018FROM golang:1.12 AS build-env
Dinesh Belwalkar0bc4ace2019-11-14 21:41:50 +000019SHELL ["/bin/bash", "-o", "pipefail", "-c"]
20RUN /bin/true | cat
Dinesh Belwalkar01217962019-05-23 21:51:16 +000021RUN mkdir /app
Dinesh Belwalkar0bc4ace2019-11-14 21:41:50 +000022COPY . /app/
Dinesh Belwalkar01217962019-05-23 21:51:16 +000023WORKDIR /app
Dinesh Belwalkar41229602019-06-21 16:58:06 +000024ENV PROTOC_VERSION 3.6.1
25ENV PROTOC_SHA256SUM 6003de742ea3fcf703cfec1cd4a3380fd143081a2eb0e559065563496af27807
Dinesh Belwalkar0bc4ace2019-11-14 21:41:50 +000026RUN apt-get update && apt-get install --no-install-recommends -y \
27 git=1:2.20.1-2 \
28 gcc=4:8.3.0-1 \
29 curl=7.64.0-4 \
30 unzip=6.0-23+deb10u1
Dinesh Belwalkar41229602019-06-21 16:58:06 +000031RUN curl -L -o /tmp/protoc-${PROTOC_VERSION}-linux-x86_64.zip https://github.com/google/protobuf/releases/download/v${PROTOC_VERSION}/protoc-${PROTOC_VERSION}-linux-x86_64.zip
32RUN mkdir /tmp/protoc3
Dinesh Belwalkar0bc4ace2019-11-14 21:41:50 +000033RUN echo "$PROTOC_SHA256SUM /tmp/protoc-${PROTOC_VERSION}-linux-x86_64.zip" | sha256sum -c - \
Dinesh Belwalkar41229602019-06-21 16:58:06 +000034 && unzip /tmp/protoc-${PROTOC_VERSION}-linux-x86_64.zip -d /tmp/protoc3 \
35 && mv /tmp/protoc3/bin/* /usr/local/bin/ \
36 && mv /tmp/protoc3/include/* /usr/local/include/
Dinesh Belwalkar0bc4ace2019-11-14 21:41:50 +000037RUN go get -u "google.golang.org/grpc" \
38 && go get "github.com/golang/protobuf/proto" \
39 && go get -v "github.com/grpc-ecosystem/grpc-gateway/protoc-gen-grpc-gateway" \
40 && go get -v "github.com/golang/protobuf/protoc-gen-go" \
41 && go get "github.com/Shopify/sarama" \
42 && go get "github.com/Sirupsen/logrus"\
43 && protoc -I proto -I"${GOPATH}/src/github.com/grpc-ecosystem/grpc-gateway/third_party/googleapis" --go_out=plugins=grpc:proto/ proto/*.proto
Dinesh Belwalkar01217962019-05-23 21:51:16 +000044RUN CGO_ENABLED=0 GOOS=linux go build -o main .
45
46FROM alpine:3.9.4
47WORKDIR /app/
Dinesh Belwalkare1e85ad2019-07-31 23:06:47 +000048COPY https-server.crt .
49COPY https-server.key .
Dinesh Belwalkar01217962019-05-23 21:51:16 +000050COPY --from=build-env /app/main .
51ENTRYPOINT ["./main"]
52