blob: 33d93e0d2deb2800b8ed209faaeba7b61d595aac [file] [log] [blame]
Scott Bakerdafc4be2018-03-21 17:20:57 -07001# Copyright 2017-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
Matteo Scandolo25ad2902018-08-14 17:02:05 -070015# docker build -t xosproject/volt-synchronizer:candidate -f Dockerfile.synchronizer .
16
Scott Bakerdafc4be2018-03-21 17:20:57 -070017# xosproject/volt-synchronizer
18
Scott Baker0e899c92019-03-28 07:04:44 -070019FROM xosproject/alpine-grpc-base:0.9.0
Scott Bakerdafc4be2018-03-21 17:20:57 -070020
Scott Baker0e899c92019-03-28 07:04:44 -070021# Install pip packages
22COPY requirements.txt /tmp/requirements.txt
23RUN pip install -r /tmp/requirements.txt \
24 && pip freeze > /var/xos/pip_freeze_olt_service_`date -u +%Y%m%dT%H%M%S`
25
26# Copy Code
Zack Williams2e8cd542018-05-30 14:13:29 -070027COPY xos/synchronizer /opt/xos/synchronizers/volt
28COPY VERSION /opt/xos/synchronizers/volt/
29COPY samples/onu_activate_event.py /opt/xos/synchronizers/volt/
Scott Bakerdafc4be2018-03-21 17:20:57 -070030
31WORKDIR "/opt/xos/synchronizers/volt"
32
33# Label image
Scott Bakerdafc4be2018-03-21 17:20:57 -070034ARG org_label_schema_version=unknown
35ARG org_label_schema_vcs_url=unknown
36ARG org_label_schema_vcs_ref=unknown
37ARG org_label_schema_build_date=unknown
38ARG org_opencord_vcs_commit_date=unknown
Scott Bakerdafc4be2018-03-21 17:20:57 -070039
Scott Baker0e899c92019-03-28 07:04:44 -070040LABEL org.label-schema.schema-version=1.0 \
41 org.label-schema.name=volt-synchronizer \
Scott Bakerdafc4be2018-03-21 17:20:57 -070042 org.label-schema.version=$org_label_schema_version \
43 org.label-schema.vcs-url=$org_label_schema_vcs_url \
44 org.label-schema.vcs-ref=$org_label_schema_vcs_ref \
45 org.label-schema.build-date=$org_label_schema_build_date \
Scott Baker0e899c92019-03-28 07:04:44 -070046 org.opencord.vcs-commit-date=$org_opencord_vcs_commit_date
Scott Bakerdafc4be2018-03-21 17:20:57 -070047
Zack Williams2e8cd542018-05-30 14:13:29 -070048CMD ["/usr/bin/python", "/opt/xos/synchronizers/volt/volt-synchronizer.py"]