Skip to content
Snippets Groups Projects
Commit 6b97d7b3 authored by Thomas Juerges's avatar Thomas Juerges
Browse files

Temporarily change to line-by-line RUNs for debugging

parent d38cade5
No related branches found
No related tags found
1 merge request!9This fixes the itango completion bug
......@@ -3,13 +3,19 @@ ARG DOCKER_REGISTRY_HOST=nexus.engageska-portugal.pt
ARG DOCKER_REGISTRY_USER=ska-docker
FROM $DOCKER_REGISTRY_HOST/$DOCKER_REGISTRY_USER/tango-itango:${VERSION}
RUN sudo apt-get -y update && \
sudo apt-get -y upgrade && \
sudo apt-get -y install apt-file apt-transport-https apt-utils aptitude && \
sudo aptitude -y install htop iftop iproute2 mc most net-tools tcpdump telnet tmux traceroute vim xterm && \
sudo aptitude clean && \
sudo aptitude autoclean && \
pip3 install "opcua >= 0.98.9" asyncua astropy
USER root
RUN apt-get -y update && \
apt-get -y upgrade && \
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
USER tango
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment