Matteo Scandolo | a8bd93e | 2018-09-13 13:36:50 -0700 | [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/kafka-topic-exporter:latest . |
kartikey dubey | 72ef3b8 | 2019-05-27 06:50:04 +0000 | [diff] [blame^] | 16 | # docker build -t 10.128.22.1:30500/opencord/kafka-topic-exporter:latest . |
Matteo Scandolo | a8bd93e | 2018-09-13 13:36:50 -0700 | [diff] [blame] | 17 | |
Scott Baker | e8537af | 2018-10-22 14:53:44 -0700 | [diff] [blame] | 18 | FROM golang:1.10-stretch as builder |
Ganesh Bhure | 8bb1982 | 2019-06-10 10:56:22 +0530 | [diff] [blame] | 19 | RUN mkdir -p /go/src/gerrit.opencord.org/kafka-topic-exporter |
Ganesh Bhure | 8bb1982 | 2019-06-10 10:56:22 +0530 | [diff] [blame] | 20 | RUN go get -u github.com/golang/dep/cmd/dep |
kartikey dubey | 72ef3b8 | 2019-05-27 06:50:04 +0000 | [diff] [blame^] | 21 | ADD Gopkg.lock /go/src/gerrit.opencord.org/kafka-topic-exporter |
| 22 | ADD Gopkg.toml /go/src/gerrit.opencord.org/kafka-topic-exporter |
| 23 | WORKDIR /go/src/gerrit.opencord.org/kafka-topic-exporter |
Ganesh Bhure | 8bb1982 | 2019-06-10 10:56:22 +0530 | [diff] [blame] | 24 | RUN dep ensure --vendor-only |
kartikey dubey | 72ef3b8 | 2019-05-27 06:50:04 +0000 | [diff] [blame^] | 25 | ADD . /go/src/gerrit.opencord.org/kafka-topic-exporter |
Scott Baker | e8537af | 2018-10-22 14:53:44 -0700 | [diff] [blame] | 26 | RUN CGO_ENABLED=0 GOOS=linux go build -o main . |
Matteo Scandolo | 189526a | 2018-07-13 09:10:23 -0700 | [diff] [blame] | 27 | |
Scott Baker | e8537af | 2018-10-22 14:53:44 -0700 | [diff] [blame] | 28 | FROM alpine:3.8 |
Ganesh Bhure | 8bb1982 | 2019-06-10 10:56:22 +0530 | [diff] [blame] | 29 | WORKDIR /go/src/gerrit.opencord.org/kafka-topic-exporter/ |
| 30 | COPY --from=builder /go/src/gerrit.opencord.org/kafka-topic-exporter/main . |
kartikey dubey | 72ef3b8 | 2019-05-27 06:50:04 +0000 | [diff] [blame^] | 31 | # FIXME this should be mounted by the helm charts |
| 32 | ADD config/conf.yaml /etc/config/conf.yaml |
Ganesh Bhure | 8d0c994 | 2019-05-24 11:42:09 +0530 | [diff] [blame] | 33 | ENTRYPOINT ["./main"] |