blob: a03a39fe7affe09087bae724f5676ddf2f02780b [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 Belwalkar01217962019-05-23 21:51:16 +000019RUN mkdir /app
20ADD . /app/
21WORKDIR /app
Dinesh Belwalkar41229602019-06-21 16:58:06 +000022ENV PROTOC_VERSION 3.6.1
23ENV PROTOC_SHA256SUM 6003de742ea3fcf703cfec1cd4a3380fd143081a2eb0e559065563496af27807
24RUN apt-get update && apt-get install -y \
25 git \
26 gcc \
27 curl \
28 unzip
29RUN 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
30RUN mkdir /tmp/protoc3
31RUN echo "$PROTOC_SHA256SUM /tmp/protoc-${PROTOC_VERSION}-linux-x86_64.zip" | sha256sum -c - \
32 && unzip /tmp/protoc-${PROTOC_VERSION}-linux-x86_64.zip -d /tmp/protoc3 \
33 && mv /tmp/protoc3/bin/* /usr/local/bin/ \
34 && mv /tmp/protoc3/include/* /usr/local/include/
35RUN go get -u google.golang.org/grpc \
36 && go get github.com/golang/protobuf/proto \
37 && go get -v github.com/grpc-ecosystem/grpc-gateway/protoc-gen-grpc-gateway \
38 && go get -v github.com/golang/protobuf/protoc-gen-go \
39 && go get github.com/Shopify/sarama \
40 && 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 +000041RUN CGO_ENABLED=0 GOOS=linux go build -o main .
42
43FROM alpine:3.9.4
44WORKDIR /app/
45COPY --from=build-env /app/main .
46ENTRYPOINT ["./main"]
47