khenaidoo | b920354 | 2018-09-17 22:56:37 -0400 | [diff] [blame] | 1 | # Copyright 2018 the original author or authors. |
| 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 | ARG REGISTRY= |
| 16 | ARG REPOSITORY= |
| 17 | ARG TAG=latest |
| 18 | |
| 19 | FROM ${REGISTRY}${REPOSITORY}voltha-protoc:${TAG} as builder |
| 20 | MAINTAINER Voltha Community <info@opennetworking.org> |
| 21 | |
khenaidoo | 6fdf0ba | 2018-11-02 14:38:33 -0400 | [diff] [blame] | 22 | COPY protos/third_party/google/api/*.proto /protos/google/api/ |
| 23 | COPY docker/config/Makefile.protos /protos/google/api/Makefile.protos |
| 24 | COPY protos/*.proto /protos/voltha/ |
| 25 | COPY docker/config/Makefile.protos /protos/voltha/Makefile.protos |
| 26 | |
khenaidoo | b920354 | 2018-09-17 22:56:37 -0400 | [diff] [blame] | 27 | WORKDIR /protos |
| 28 | RUN make -f google/api/Makefile.protos google_api |
| 29 | RUN touch /protos/google/__init__.py /protos/google/api/__init__.py |
| 30 | |
khenaidoo | b920354 | 2018-09-17 22:56:37 -0400 | [diff] [blame] | 31 | WORKDIR /protos/voltha |
| 32 | RUN make -f Makefile.protos build |
| 33 | |
| 34 | # Copy the files to a scrach based container to minimize its size |
| 35 | FROM ${REGISTRY}scratch |
| 36 | COPY --from=builder /protos/ /protos/ |