blob: 42a3c65150e77f1c405bdb03a75b4c701c96197e [file] [log] [blame]
khenaidoofdbad6e2018-11-06 22:26:38 -05001# Copyright 2016 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.
14ARG TAG=latest
15ARG REGISTRY=
16ARG REPOSITORY=
17
khenaidoofdbad6e2018-11-06 22:26:38 -050018FROM ${REGISTRY}${REPOSITORY}voltha-base:${TAG}
19
20MAINTAINER Voltha Community <info@opennetworking.org>
21
22# Bundle app source
23RUN mkdir /voltha && touch /voltha/__init__.py
24ENV PYTHONPATH=/voltha
khenaidoofdbad6e2018-11-06 22:26:38 -050025COPY cli /voltha/python/cli
26RUN touch /voltha/python/__init__.py
27RUN touch /voltha/python/cli/__init__.py
28
khenaidoofdbad6e2018-11-06 22:26:38 -050029
30# Setup the voltha user
31RUN useradd -b /home -d /home/voltha voltha -s /bin/bash
32RUN mkdir /home/voltha
33RUN chown voltha.voltha /home/voltha
34RUN echo "voltha:admin" | chpasswd
35RUN apt-get update && apt-get install -y openssh-server
36RUN apt-get update && apt-get install -y openssh-server
37RUN mkdir /var/run/sshd
38RUN echo 'root:screencast' | chpasswd
39RUN sed -i 's/PermitRootLogin prohibit-password/PermitRootLogin yes/' /etc/ssh/sshd_config
40
41# SSH login fix. Otherwise user is kicked off after login
42RUN sed 's@session\s*required\s*pam_loginuid.so@session optional pam_loginuid.so@g' -i /etc/pam.d/sshd
43
44ENV NOTVISIBLE "in users profile"
45RUN echo "export VISIBLE=now" >> /etc/profile
46
47EXPOSE 22
48
49# Exposing process and default entry point
50ENTRYPOINT ["/usr/bin/dumb-init", "--"]
51
52CMD ["/voltha/python/cli/setup.sh"]