From c538b19064adbee4561c9e6a8c3850cfaace27f5 Mon Sep 17 00:00:00 2001 From: Thomas Juerges <4-jurges@users.noreply.git.astron.nl> Date: Thu, 1 Apr 2021 16:17:49 +0200 Subject: [PATCH] This fixes the itango autocompletion bug --- docker-compose/itango/Dockerfile | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) diff --git a/docker-compose/itango/Dockerfile b/docker-compose/itango/Dockerfile index 8117ce8a0..361602f17 100644 --- a/docker-compose/itango/Dockerfile +++ b/docker-compose/itango/Dockerfile @@ -10,12 +10,10 @@ RUN apt-get -y update && \ apt-get -y install apt-file apt-transport-https apt-utils aptitude && \ aptitude -y install htop iftop iproute2 mc most net-tools tcpdump telnet tmux traceroute vim xterm && \ aptitude clean && \ - aptitude autoclean -RUN pip3 cache purge -RUN pip3 uninstall -y jedi parso -#RUN pip3 list -RUN pip3 install "parso == 0.7.1" "jedi == 0.17.2" -RUN pip3 list -#RUN pip3 install "opcua >= 0.98.9" asyncua astropy + aptitude autoclean && \ + pip3 install "opcua >= 0.98.9" asyncua astropy && \ + pip3 uninstall -y jedi parso && \ + pip3 install "parso == 0.7.1" "jedi == 0.17.2" && \ + pip3 cache purge USER tango -- GitLab