blob: 50c9bf7b49316cf9b3b3b7e7ff5c3b43bc50378d [file] [log] [blame]
David K. Bainbridge10a7a7e2018-01-29 09:54:40 -08001# 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
15ARG REGISTRY=
16ARG REPOSITORY=
17ARG TAG=latest
18
19FROM ${REGISTRY}${REPOSITORY}voltha-protoc:${TAG} as builder
20MAINTAINER Voltha Community <info@opennetworking.org>
21
22COPY voltha/protos/third_party/google/api/*.proto /protos/google/api/
23COPY docker/config/Makefile.protos /protos/google/api/Makefile.protos
24WORKDIR /protos
25RUN make -f google/api/Makefile.protos google_api
26RUN touch /protos/google/__init__.py /protos/google/api/__init__.py
27
28COPY voltha/protos/*.proto /protos/voltha/
29COPY docker/config/Makefile.protos /protos/voltha/Makefile.protos
30WORKDIR /protos/voltha
31RUN make -f Makefile.protos build
32
33COPY voltha/adapters/asfvolt16_olt/protos/*.proto /protos/asfvolt16_olt/
34COPY docker/config/Makefile.protos /protos/asfvolt16_olt/Makefile.protos
35WORKDIR /protos/asfvolt16_olt
36RUN make -f Makefile.protos build
37
Shad Ansari1ef88bc2019-03-28 09:03:48 -070038COPY voltha/protos/tech_profile.proto /protos/openolt/
Jonathan Hart086476d2018-04-09 10:53:13 -070039COPY voltha/adapters/openolt/protos/*.proto /protos/openolt/
40COPY docker/config/Makefile.protos /protos/openolt/Makefile.protos
41WORKDIR /protos/openolt
42RUN make -f Makefile.protos build
43
lcui8961f9f2018-07-13 18:17:17 -070044COPY voltha/adapters/cig_olt/protos/*.proto /protos/cig_olt/
45COPY voltha/adapters/cig_olt/protos/Makefile.protos /protos/cig_olt/Makefile.protos
46WORKDIR /protos/cig_olt
47RUN make -f Makefile.protos build
48
David K. Bainbridge10a7a7e2018-01-29 09:54:40 -080049# Copy the files to a scrach based container to minimize its size
50FROM ${REGISTRY}scratch
51COPY --from=builder /protos/ /protos/