Dinesh Belwalkar | 0121796 | 2019-05-23 21:51:16 +0000 | [diff] [blame] | 1 | # 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 Belwalkar | 4122960 | 2019-06-21 16:58:06 +0000 | [diff] [blame] | 18 | FROM golang:1.12 AS build-env |
Dinesh Belwalkar | 0121796 | 2019-05-23 21:51:16 +0000 | [diff] [blame] | 19 | RUN mkdir /app |
| 20 | ADD . /app/ |
| 21 | WORKDIR /app |
Dinesh Belwalkar | 4122960 | 2019-06-21 16:58:06 +0000 | [diff] [blame] | 22 | ENV PROTOC_VERSION 3.6.1 |
| 23 | ENV PROTOC_SHA256SUM 6003de742ea3fcf703cfec1cd4a3380fd143081a2eb0e559065563496af27807 |
| 24 | RUN apt-get update && apt-get install -y \ |
| 25 | git \ |
| 26 | gcc \ |
| 27 | curl \ |
| 28 | unzip |
| 29 | RUN 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 |
| 30 | RUN mkdir /tmp/protoc3 |
| 31 | RUN 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/ |
| 35 | RUN 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 \ |
Dinesh Belwalkar | a0493ad | 2019-07-22 19:58:42 +0000 | [diff] [blame^] | 40 | && go get github.com/Sirupsen/logrus\ |
Dinesh Belwalkar | 4122960 | 2019-06-21 16:58:06 +0000 | [diff] [blame] | 41 | && protoc -I proto -I${GOPATH}/src/github.com/grpc-ecosystem/grpc-gateway/third_party/googleapis --go_out=plugins=grpc:proto/ proto/*.proto |
Dinesh Belwalkar | 0121796 | 2019-05-23 21:51:16 +0000 | [diff] [blame] | 42 | RUN CGO_ENABLED=0 GOOS=linux go build -o main . |
| 43 | |
| 44 | FROM alpine:3.9.4 |
| 45 | WORKDIR /app/ |
| 46 | COPY --from=build-env /app/main . |
| 47 | ENTRYPOINT ["./main"] |
| 48 | |