Chip Boling | f5af85d | 2019-02-12 15:36:17 -0600 | [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 | |
| 15 | FROM ubuntu:xenial |
| 16 | |
| 17 | MAINTAINER Voltha Community <info@opennetworking.org> |
| 18 | |
| 19 | # Update to have latest images |
| 20 | RUN apt-get update && \ |
| 21 | apt-get install -y python openssl iproute2 libpcap-dev wget build-essential git binutils python-dev libffi-dev libssl-dev |
| 22 | |
| 23 | # Install current version of pip rather than outdated pip from apt |
| 24 | RUN wget -O /tmp/get-pip.py https://bootstrap.pypa.io/get-pip.py |
| 25 | RUN python /tmp/get-pip.py |
| 26 | |
| 27 | # Install adapter requirements. |
| 28 | COPY requirements.txt /tmp/requirements.txt |
| 29 | RUN pip install -r /tmp/requirements.txt |
| 30 | |
| 31 | # Bundle app source |
| 32 | RUN mkdir /voltha && touch /voltha/__init__.py |
| 33 | RUN mkdir /voltha/adapters && touch /voltha/adapters/__init__.py |
| 34 | ENV PYTHONPATH=/voltha |
| 35 | |
| 36 | COPY pki /voltha/pki/ |
| 37 | |
Chip Boling | d2d7a4d | 2019-03-14 14:34:56 -0500 | [diff] [blame^] | 38 | # Adtran specific (common library and debug support) |
Chip Boling | f5af85d | 2019-02-12 15:36:17 -0600 | [diff] [blame] | 39 | COPY adapters/adtran_common /voltha/adapters/adtran_common |
| 40 | COPY pydevd /voltha/pydevd |
| 41 | |
| 42 | # Install local pyvoltha |
| 43 | COPY pyvoltha/dist /pyvoltha/dist |
| 44 | RUN pip install /pyvoltha/dist/*.tar.gz |
| 45 | |
Chip Boling | d2d7a4d | 2019-03-14 14:34:56 -0500 | [diff] [blame^] | 46 | # Install local voltha-protos |
| 47 | COPY voltha-protos/dist /voltha-protos/dist |
| 48 | RUN pip install /voltha-protos/dist/*.tar.gz |
| 49 | |