Alex Stancu | f1d5c91 | 2020-11-02 17:34:59 +0200 | [diff] [blame] | 1 | # |
| 2 | # Copyright 2020 highstreet technologies GmbH and others |
| 3 | # |
| 4 | # Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | # you may not use this file except in compliance with the License. |
| 6 | # You may obtain a copy of the License at |
| 7 | # |
| 8 | # http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | # |
| 10 | # Unless required by applicable law or agreed to in writing, software |
| 11 | # distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | # See the License for the specific language governing permissions and |
| 14 | # limitations under the License. |
| 15 | |
| 16 | ################ |
| 17 | #### DEVICE #### |
| 18 | ################ |
| 19 | |
Alex Stancu | 0819caf | 2020-11-03 16:51:22 +0200 | [diff] [blame^] | 20 | FROM nexus3.o-ran-sc.org:10001/o-ran-sc/nts-ng-base:latest |
Alex Stancu | f1d5c91 | 2020-11-02 17:34:59 +0200 | [diff] [blame] | 21 | LABEL maintainer="alexandru.stancu@highstreet-technologies.com / adrian.lita@highstreet-technologies.com" |
| 22 | |
| 23 | # ntsim-ng configuration and deployment |
| 24 | COPY ./yang /opt/dev/deploy/yang |
| 25 | COPY ./config.json /opt/dev/ntsim-ng/config/config.json |
| 26 | |
| 27 | # ntsim-ng init docker |
| 28 | RUN /opt/dev/ntsim-ng/ntsim-ng --docker-init -w /opt/dev/ntsim-ng |
| 29 | |
| 30 | # supervisor configuration |
| 31 | COPY ./supervisord.conf /etc/supervisord.conf |
| 32 | |
| 33 | # finishing container build |
| 34 | ARG BUILD_DATE |
| 35 | LABEL build-date=$BUILD_DATE |
| 36 | |
| 37 | # add exposed ports |
| 38 | EXPOSE 830-929 |
| 39 | EXPOSE 21-22 |
| 40 | |
| 41 | # run |
| 42 | WORKDIR /opt/dev/workspace |
| 43 | CMD ["sh", "-c", "/usr/bin/supervisord -c /etc/supervisord.conf"] |