Dinesh Belwalkar | 6c0bc75 | 2020-04-24 23:47:53 +0000 | [diff] [blame] | 1 | # Copyright 2018-present Open Networking Foundation |
| 2 | # Copyright 2018-present Edgecore Networks Corporation |
Dinesh Belwalkar | 0121796 | 2019-05-23 21:51:16 +0000 | [diff] [blame] | 3 | # |
| 4 | # Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | # you may not use this file except in compliance with the License. |
| 6 | # You may obtain a copy of the License at |
| 7 | # |
| 8 | # http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | # |
| 10 | # Unless required by applicable law or agreed to in writing, software |
| 11 | # distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | # See the License for the specific language governing permissions and |
| 14 | # limitations under the License. |
| 15 | |
| 16 | # docker build -t opencord/device-management:latest . |
| 17 | # docker build -t 10.90.0.101:30500/opencord/kafka-topic-exporter:latest . |
| 18 | |
Dinesh Belwalkar | 4122960 | 2019-06-21 16:58:06 +0000 | [diff] [blame] | 19 | FROM golang:1.12 AS build-env |
Dinesh Belwalkar | 0bc4ace | 2019-11-14 21:41:50 +0000 | [diff] [blame] | 20 | SHELL ["/bin/bash", "-o", "pipefail", "-c"] |
| 21 | RUN /bin/true | cat |
Dinesh Belwalkar | e63f7f9 | 2019-11-22 23:11:16 +0000 | [diff] [blame] | 22 | ENV GO111MODULE=on |
Dinesh Belwalkar | 396b652 | 2020-02-06 22:11:53 +0000 | [diff] [blame] | 23 | ENV PROTOC_VERSION="3.7.0" |
| 24 | ENV PROTOC_SHA256SUM="a1b8ed22d6dc53c5b8680a6f1760a305b33ef471bece482e92728f00ba2a2969" |
Dinesh Belwalkar | a6ba07d | 2020-01-10 23:22:34 +0000 | [diff] [blame] | 25 | RUN apt-get update && apt-get install --no-install-recommends -y --allow-downgrades \ |
Dinesh Belwalkar | bf20292 | 2020-02-19 20:54:10 +0000 | [diff] [blame] | 26 | git=1:2.20.1-2+deb10u1 \ |
Dinesh Belwalkar | 0bc4ace | 2019-11-14 21:41:50 +0000 | [diff] [blame] | 27 | gcc=4:8.3.0-1 \ |
| 28 | curl=7.64.0-4 \ |
Matteo Scandolo | 3a0ec85 | 2021-04-19 10:45:02 -0700 | [diff] [blame^] | 29 | unzip=6.0-23+deb10u2 |
Scott Baker | 105df15 | 2020-04-13 15:55:14 -0700 | [diff] [blame] | 30 | RUN go get -v "github.com/golang/protobuf/protoc-gen-go@v1.3.2" |
Scott Baker | bdb962b | 2020-04-03 10:53:36 -0700 | [diff] [blame] | 31 | RUN mkdir /app |
| 32 | COPY . /app/ |
| 33 | WORKDIR /app |
Matteo Scandolo | 3a0ec85 | 2021-04-19 10:45:02 -0700 | [diff] [blame^] | 34 | 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 |
Dinesh Belwalkar | 4122960 | 2019-06-21 16:58:06 +0000 | [diff] [blame] | 35 | RUN mkdir /tmp/protoc3 |
Dinesh Belwalkar | 0bc4ace | 2019-11-14 21:41:50 +0000 | [diff] [blame] | 36 | RUN echo "$PROTOC_SHA256SUM /tmp/protoc-${PROTOC_VERSION}-linux-x86_64.zip" | sha256sum -c - \ |
Dinesh Belwalkar | 4122960 | 2019-06-21 16:58:06 +0000 | [diff] [blame] | 37 | && unzip /tmp/protoc-${PROTOC_VERSION}-linux-x86_64.zip -d /tmp/protoc3 \ |
| 38 | && mv /tmp/protoc3/bin/* /usr/local/bin/ \ |
| 39 | && mv /tmp/protoc3/include/* /usr/local/include/ |
Scott Baker | bdb962b | 2020-04-03 10:53:36 -0700 | [diff] [blame] | 40 | RUN protoc -I proto -I"${GOPATH}/src/github.com/grpc-ecosystem/grpc-gateway/third_party/googleapis" --go_out=plugins=grpc:proto/ proto/*.proto |
Dinesh Belwalkar | e63f7f9 | 2019-11-22 23:11:16 +0000 | [diff] [blame] | 41 | RUN GO111MODULE=on CGO_ENABLED=0 GOOS=linux go build -mod=vendor -o main . |
Dinesh Belwalkar | 0121796 | 2019-05-23 21:51:16 +0000 | [diff] [blame] | 42 | |
| 43 | FROM alpine:3.9.4 |
| 44 | WORKDIR /app/ |
Dinesh Belwalkar | e1e85ad | 2019-07-31 23:06:47 +0000 | [diff] [blame] | 45 | COPY https-server.crt . |
| 46 | COPY https-server.key . |
Dinesh Belwalkar | 0121796 | 2019-05-23 21:51:16 +0000 | [diff] [blame] | 47 | COPY --from=build-env /app/main . |
Dinesh Belwalkar | e63f7f9 | 2019-11-22 23:11:16 +0000 | [diff] [blame] | 48 | COPY --from=build-env /app/proto/importer.pb.go . |
Dinesh Belwalkar | 0121796 | 2019-05-23 21:51:16 +0000 | [diff] [blame] | 49 | ENTRYPOINT ["./main"] |