Deployment fixes for python deps

visualizer
Ken 2020-12-17 23:55:51 -05:00
parent ff1553f61a
commit 6fee0a1f8b
3 changed files with 6 additions and 4 deletions

View File

@ -17,7 +17,7 @@ Version : $PkgVer
Maintainer: <ip.over.p2p@gmail.com>
Architecture: $PkgArch
Homepage: http://edgevpn.io
Depends: python3.8, python3.8-dev, python3.8-venv, python3-pip, iproute2, openvswitch-switch, bridge-utils
Depends: python3.8, python3.8-dev, python3.8-venv, python3-pip, python3-wheel, iproute2, openvswitch-switch, bridge-utils
Description: Virtualized Overlay Networks.
EdgeVPN is an open-source user-centric software virtual network allowing end users to define and create their own virtual private networks (VPNs). EdgeVPNio virtual networks provide end-to-end tunneling of IP or Ethernet over Tincan links setup and managed through a control API to create various software-defined VPN overlays.
Tag: P2P Edge Overlay Networking

View File

@ -3,7 +3,8 @@
cd /opt/edge-vpnio
python3.8 -m venv venv
source venv/bin/activate
pip3 --no-cache-dir install wheel psutil slixmpp requests simplejson ryu
pip3 --no-cache-dir install wheel
pip3 --no-cache-dir install psutil slixmpp requests simplejson ryu
deactivate
systemctl daemon-reload
systemctl enable evio

View File

@ -7,9 +7,10 @@ RUN apt-get update -y && apt-get install -y \
iputils-ping \
nano \
python3.8 \
python3-dev \
python3.8-dev \
python3.8-venv \
python3-pip \
python3-venv \
python3-wheel \
iproute2 \
openvswitch-switch \
bridge-utils \