blob: 8d2c5c2660138ba94c3de3d498a871317b88573b [file] [log] [blame]
#
# Copyright 2020 highstreet technologies GmbH and others
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
################
#### DEVICE ####
################
FROM nexus3.o-ran-sc.org:10001/o-ran-sc/nts-ng-base:latest
LABEL maintainer="alexandru.stancu@highstreet-technologies.com / adrian.lita@highstreet-technologies.com"
# ntsim-ng configuration and deployment
COPY ./yang /opt/dev/deploy/yang
COPY ./config.json /opt/dev/ntsim-ng/config/config.json
# ntsim-ng init docker
RUN /opt/dev/ntsim-ng/ntsim-ng --docker-init -w /opt/dev/ntsim-ng
# supervisor configuration
COPY ./supervisord.conf /etc/supervisord.conf
# finishing container build
ARG BUILD_DATE
LABEL build-date=$BUILD_DATE
# add exposed ports
EXPOSE 830-929
EXPOSE 21-22
# host IP address to bind to
ENV NETCONF_NTS_HOST_IP=127.0.0.1
# starting port for host allocation
ENV NETCONF_NTS_HOST_BASE_PORT=50000
ENV DOCKER_ENGINE_VERSION=1.40
# run
WORKDIR /opt/dev/workspace
CMD ["sh", "-c", "/usr/bin/supervisord -c /etc/supervisord.conf"]