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 | 0bc4ace | 2019-11-14 21:41:50 +0000 | [diff] [blame] | 19 | SHELL ["/bin/bash", "-o", "pipefail", "-c"] |
| 20 | RUN /bin/true | cat |
Dinesh Belwalkar | 0121796 | 2019-05-23 21:51:16 +0000 | [diff] [blame] | 21 | RUN mkdir /app |
Dinesh Belwalkar | 0bc4ace | 2019-11-14 21:41:50 +0000 | [diff] [blame] | 22 | COPY . /app/ |
Dinesh Belwalkar | 0121796 | 2019-05-23 21:51:16 +0000 | [diff] [blame] | 23 | WORKDIR /app |
Dinesh Belwalkar | e63f7f9 | 2019-11-22 23:11:16 +0000 | [diff] [blame] | 24 | ENV GO111MODULE=on |
Dinesh Belwalkar | 396b652 | 2020-02-06 22:11:53 +0000 | [diff] [blame^] | 25 | ENV PROTOC_VERSION="3.7.0" |
| 26 | ENV PROTOC_SHA256SUM="a1b8ed22d6dc53c5b8680a6f1760a305b33ef471bece482e92728f00ba2a2969" |
Dinesh Belwalkar | a6ba07d | 2020-01-10 23:22:34 +0000 | [diff] [blame] | 27 | RUN apt-get update && apt-get install --no-install-recommends -y --allow-downgrades \ |
Dinesh Belwalkar | 0bc4ace | 2019-11-14 21:41:50 +0000 | [diff] [blame] | 28 | git=1:2.20.1-2 \ |
| 29 | gcc=4:8.3.0-1 \ |
| 30 | curl=7.64.0-4 \ |
| 31 | unzip=6.0-23+deb10u1 |
Dinesh Belwalkar | e63f7f9 | 2019-11-22 23:11:16 +0000 | [diff] [blame] | 32 | |
Dinesh Belwalkar | 4122960 | 2019-06-21 16:58:06 +0000 | [diff] [blame] | 33 | 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 |
| 34 | RUN mkdir /tmp/protoc3 |
Dinesh Belwalkar | 0bc4ace | 2019-11-14 21:41:50 +0000 | [diff] [blame] | 35 | 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] | 36 | && unzip /tmp/protoc-${PROTOC_VERSION}-linux-x86_64.zip -d /tmp/protoc3 \ |
| 37 | && mv /tmp/protoc3/bin/* /usr/local/bin/ \ |
| 38 | && mv /tmp/protoc3/include/* /usr/local/include/ |
Dinesh Belwalkar | 0bc4ace | 2019-11-14 21:41:50 +0000 | [diff] [blame] | 39 | RUN go get -u "google.golang.org/grpc" \ |
| 40 | && go get "github.com/golang/protobuf/proto" \ |
| 41 | && go get -v "github.com/grpc-ecosystem/grpc-gateway/protoc-gen-grpc-gateway" \ |
| 42 | && go get -v "github.com/golang/protobuf/protoc-gen-go" \ |
Dinesh Belwalkar | 0bc4ace | 2019-11-14 21:41:50 +0000 | [diff] [blame] | 43 | && 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] | 44 | 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] | 45 | |
| 46 | FROM alpine:3.9.4 |
| 47 | WORKDIR /app/ |
Dinesh Belwalkar | e1e85ad | 2019-07-31 23:06:47 +0000 | [diff] [blame] | 48 | COPY https-server.crt . |
| 49 | COPY https-server.key . |
Dinesh Belwalkar | 0121796 | 2019-05-23 21:51:16 +0000 | [diff] [blame] | 50 | COPY --from=build-env /app/main . |
Dinesh Belwalkar | e63f7f9 | 2019-11-22 23:11:16 +0000 | [diff] [blame] | 51 | COPY --from=build-env /app/proto/importer.pb.go . |
Dinesh Belwalkar | 0121796 | 2019-05-23 21:51:16 +0000 | [diff] [blame] | 52 | ENTRYPOINT ["./main"] |
| 53 | |