From fc2bd3753e9ab7de52e9b2d3ea31f83e7271795e Mon Sep 17 00:00:00 2001 From: aguilarherna Date: Fri, 18 Mar 2022 13:53:41 +0000 Subject: [PATCH 1/3] Added some comments in Dockerfile --- Dockerfile | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index d811e1a..0ca079e 100644 --- a/Dockerfile +++ b/Dockerfile @@ -25,10 +25,19 @@ RUN apt-get update && apt-get install -y git python3 python3-pip \ && python3 -m pip install -U grpclib \ && python3 -m pip install -U PyYAML +# Libraries used by the vnf: asyncssh, ansible +# TODO - need to think where to define this +#RUN apt-get update && apt-get install software-properties-common \ +# && apt-add-repository --yes --update ppa:ansible/ansible \ +# && apt install ansible \ +# && python3 -m pip install asyncssh +#RUN apt-get update \ +# && python3 -m pip install asyncssh + # Copy the current directory contents into the container at /app/LCM ADD . /app/EE -# Install as module +# TODO - currently not working RUN python3 -m pip install -e /app/EE # Install SNMP Generator and its dependencies -- GitLab From b9c58abb0da4d1c5d2d60ce65de46fa48cf3e0f3 Mon Sep 17 00:00:00 2001 From: Francisco-Javier Ramon Salguero Date: Mon, 21 Mar 2022 09:10:17 +0000 Subject: [PATCH 2/3] Apply 1 suggestion(s) to 1 file(s) --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 0ca079e..9c538e0 100644 --- a/Dockerfile +++ b/Dockerfile @@ -37,7 +37,7 @@ RUN apt-get update && apt-get install -y git python3 python3-pip \ # Copy the current directory contents into the container at /app/LCM ADD . /app/EE -# TODO - currently not working +# Install as module RUN python3 -m pip install -e /app/EE # Install SNMP Generator and its dependencies -- GitLab From 065fbb6976056573ba8e2eb149fbaac9946acea9 Mon Sep 17 00:00:00 2001 From: Francisco-Javier Ramon Salguero Date: Mon, 21 Mar 2022 09:10:20 +0000 Subject: [PATCH 3/3] Apply 1 suggestion(s) to 1 file(s) --- Dockerfile | 1 - 1 file changed, 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 9c538e0..62702f2 100644 --- a/Dockerfile +++ b/Dockerfile @@ -26,7 +26,6 @@ RUN apt-get update && apt-get install -y git python3 python3-pip \ && python3 -m pip install -U PyYAML # Libraries used by the vnf: asyncssh, ansible -# TODO - need to think where to define this #RUN apt-get update && apt-get install software-properties-common \ # && apt-add-repository --yes --update ppa:ansible/ansible \ # && apt install ansible \ -- GitLab