blob: bd387027645a1cb78593da96e10b7ff0ca3c77fe [file] [log] [blame]
Matt Jeanneretf1e9c5d2019-02-08 07:41:29 -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.
14
15FROM ubuntu:xenial
16
17MAINTAINER Voltha Community <info@opennetworking.org>
18
William Kurkian07271552019-04-09 16:52:06 -040019ARG LOCAL_PYVOLTHA
20ARG LOCAL_PROTOS
21
Matt Jeanneretf1e9c5d2019-02-08 07:41:29 -050022# Update to have latest images
23RUN apt-get update && \
Matt Jeanneret18949ae2019-02-09 15:00:14 -050024 apt-get install -y python openssl iproute2 libpcap-dev wget build-essential git binutils python-dev libffi-dev libssl-dev
Matt Jeanneretf1e9c5d2019-02-08 07:41:29 -050025
Matt Jeanneret18949ae2019-02-09 15:00:14 -050026# Install current version of pip rather than outdated pip from apt
27RUN wget -O /tmp/get-pip.py https://bootstrap.pypa.io/get-pip.py
28RUN python /tmp/get-pip.py
29
30# Install adapter requirements.
Matt Jeanneretf1e9c5d2019-02-08 07:41:29 -050031COPY requirements.txt /tmp/requirements.txt
Matt Jeanneret18949ae2019-02-09 15:00:14 -050032RUN pip install -r /tmp/requirements.txt
Matt Jeanneretf1e9c5d2019-02-08 07:41:29 -050033
William Kurkian07271552019-04-09 16:52:06 -040034#COPY POTENTIAL LOCAL IMPORTS
35COPY local_imports/ /local_imports/
36
37RUN if [ -n "$LOCAL_PYVOLTHA" ] ; then \
38 pip install /local_imports/pyvoltha/dist/*.tar.gz ; \
39fi
40
41RUN if [ -n "$LOCAL_PROTOS" ] ; then \
42 pip install /local_imports/voltha-protos/dist/*.tar.gz ; \
43fi