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. |
Matt Jeanneret | 2e3051a | 2019-05-11 15:01:46 -0400 | [diff] [blame] | 14 | FROM ubuntu:16.04 |
khenaidoo | fdbad6e | 2018-11-06 22:26:38 -0500 | [diff] [blame] | 15 | |
Matt Jeanneret | 2e3051a | 2019-05-11 15:01:46 -0400 | [diff] [blame] | 16 | # Update to have latest images |
| 17 | RUN apt-get update && \ |
| 18 | apt-get install -y python openssl iproute2 libpcap-dev wget build-essential git binutils python-dev libffi-dev libssl-dev |
khenaidoo | fdbad6e | 2018-11-06 22:26:38 -0500 | [diff] [blame] | 19 | |
Matt Jeanneret | 2e3051a | 2019-05-11 15:01:46 -0400 | [diff] [blame] | 20 | # Install current version of pip rather than outdated pip from apt |
| 21 | RUN wget -O /tmp/get-pip.py https://bootstrap.pypa.io/get-pip.py |
| 22 | RUN python /tmp/get-pip.py |
| 23 | |
| 24 | # Install adapter requirements. |
| 25 | COPY requirements.txt /tmp/requirements.txt |
| 26 | RUN pip install -r /tmp/requirements.txt |
| 27 | |
| 28 | ARG LOCAL_PYVOLTHA |
| 29 | ARG LOCAL_PROTOS |
| 30 | COPY local_imports/ /local_imports/ |
| 31 | RUN if [ -n "$LOCAL_PYVOLTHA" ] ; then \ |
| 32 | pip install /local_imports/pyvoltha/dist/*.tar.gz ; \ |
| 33 | fi |
| 34 | |
| 35 | RUN if [ -n "$LOCAL_PROTOS" ] ; then \ |
| 36 | pip install /local_imports/voltha-protos/dist/*.tar.gz ; \ |
| 37 | fi |
khenaidoo | fdbad6e | 2018-11-06 22:26:38 -0500 | [diff] [blame] | 38 | |
| 39 | # Bundle app source |
| 40 | RUN mkdir /voltha && touch /voltha/__init__.py |
| 41 | ENV PYTHONPATH=/voltha |
khenaidoo | fdbad6e | 2018-11-06 22:26:38 -0500 | [diff] [blame] | 42 | COPY cli /voltha/python/cli |
| 43 | RUN touch /voltha/python/__init__.py |
| 44 | RUN touch /voltha/python/cli/__init__.py |
| 45 | |
khenaidoo | fdbad6e | 2018-11-06 22:26:38 -0500 | [diff] [blame] | 46 | # Setup the voltha user |
| 47 | RUN useradd -b /home -d /home/voltha voltha -s /bin/bash |
| 48 | RUN mkdir /home/voltha |
| 49 | RUN chown voltha.voltha /home/voltha |
| 50 | RUN echo "voltha:admin" | chpasswd |
| 51 | RUN apt-get update && apt-get install -y openssh-server |
| 52 | RUN apt-get update && apt-get install -y openssh-server |
| 53 | RUN mkdir /var/run/sshd |
| 54 | RUN echo 'root:screencast' | chpasswd |
| 55 | RUN sed -i 's/PermitRootLogin prohibit-password/PermitRootLogin yes/' /etc/ssh/sshd_config |
| 56 | |
| 57 | # SSH login fix. Otherwise user is kicked off after login |
| 58 | RUN sed 's@session\s*required\s*pam_loginuid.so@session optional pam_loginuid.so@g' -i /etc/pam.d/sshd |
| 59 | |
| 60 | ENV NOTVISIBLE "in users profile" |
| 61 | RUN echo "export VISIBLE=now" >> /etc/profile |
| 62 | |
| 63 | EXPOSE 22 |
| 64 | |
khenaidoo | fdbad6e | 2018-11-06 22:26:38 -0500 | [diff] [blame] | 65 | CMD ["/voltha/python/cli/setup.sh"] |
Matt Jeanneret | 2e3051a | 2019-05-11 15:01:46 -0400 | [diff] [blame] | 66 | |
| 67 | # Label image |
| 68 | ARG org_label_schema_version=unknown |
| 69 | ARG org_label_schema_vcs_url=unknown |
| 70 | ARG org_label_schema_vcs_ref=unknown |
| 71 | ARG org_label_schema_build_date=unknown |
| 72 | ARG org_opencord_vcs_commit_date=unknown |
| 73 | |
| 74 | LABEL org.label-schema.schema-version=1.0 \ |
| 75 | org.label-schema.name=voltha-cli \ |
| 76 | org.label-schema.version=$org_label_schema_version \ |
| 77 | org.label-schema.vcs-url=$org_label_schema_vcs_url \ |
| 78 | org.label-schema.vcs-ref=$org_label_schema_vcs_ref \ |
| 79 | org.label-schema.build-date=$org_label_schema_build_date \ |
| 80 | org.opencord.vcs-commit-date=$org_opencord_vcs_commit_date |