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