blob: 55859428b2a3363de3cedd87e82e9e649442fe6e [file] [log] [blame]
William Kurkian6f436d02019-02-06 16:25:01 -05001# 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-protos:${TAG} as protos
20FROM ${REGISTRY}${REPOSITORY}voltha-protoc:${TAG} as builder
21
22MAINTAINER Voltha Community <info@opennetworking.org>
23
William Kurkian6f436d02019-02-06 16:25:01 -050024COPY --from=protos /protos/voltha/ /protos/voltha/
William Kurkianfefd4642019-02-07 15:30:03 -050025COPY protos/*.proto /protos/voltha/
William Kurkian44cd7bb2019-02-11 16:39:12 -050026COPY protos/third_party/google/ /protos/voltha/google/
William Kurkian6f436d02019-02-06 16:25:01 -050027COPY docker/config/Makefile.protos /protos/voltha/Makefile.protos
28
William Kurkian6f436d02019-02-06 16:25:01 -050029WORKDIR /protos/voltha
30RUN make -f Makefile.protos build
31
32# Copy the files to a scrach based container to minimize its size
33FROM ${REGISTRY}scratch
34COPY --from=builder /protos/ /protos/