blob: 2c4fd45fcfb22d35bc99a8a1275f3be030ef312c [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
18FROM ${REGISTRY}${REPOSITORY}voltha-protos:${TAG} as protos
19FROM ${REGISTRY}${REPOSITORY}voltha-base:${TAG}
20
21MAINTAINER Voltha Community <info@opennetworking.org>
22
23# Bundle app source
24RUN mkdir /voltha && touch /voltha/__init__.py
25ENV PYTHONPATH=/voltha
26COPY common /voltha/python/common/
27COPY cli /voltha/python/cli
28RUN touch /voltha/python/__init__.py
29RUN touch /voltha/python/cli/__init__.py
30
31# Copy in the generated GRPC proto code
32COPY --from=protos /protos/voltha /voltha/python/protos
33COPY --from=protos /protos/google/api /voltha/python/protos/third_party/google/api
34COPY protos/third_party/__init__.py /voltha/python/protos/third_party
35RUN touch /voltha/python/protos/__init__.py
36RUN touch /voltha/python/protos/third_party/google/__init__.py
37
38# Setup the voltha user
39RUN useradd -b /home -d /home/voltha voltha -s /bin/bash
40RUN mkdir /home/voltha
41RUN chown voltha.voltha /home/voltha
42RUN echo "voltha:admin" | chpasswd
43RUN apt-get update && apt-get install -y openssh-server
44RUN apt-get update && apt-get install -y openssh-server
45RUN mkdir /var/run/sshd
46RUN echo 'root:screencast' | chpasswd
47RUN sed -i 's/PermitRootLogin prohibit-password/PermitRootLogin yes/' /etc/ssh/sshd_config
48
49# SSH login fix. Otherwise user is kicked off after login
50RUN sed 's@session\s*required\s*pam_loginuid.so@session optional pam_loginuid.so@g' -i /etc/pam.d/sshd
51
52ENV NOTVISIBLE "in users profile"
53RUN echo "export VISIBLE=now" >> /etc/profile
54
55EXPOSE 22
56
57# Exposing process and default entry point
58ENTRYPOINT ["/usr/bin/dumb-init", "--"]
59
60CMD ["/voltha/python/cli/setup.sh"]