Skip to content
Snippets Groups Projects
Select Git revision
  • 6b97d7b345df5c7f27b94ae17f0cad204801bae1
  • master default protected
  • L2SS-2407-swap-iers-caltable-monitoring-port
  • L2SS-2357-fix-ruff
  • sync-up-with-meta-pypcc
  • stabilise-landing-page
  • all-stations-lofar2
  • v0.39.7-backports
  • Move-sdptr-to-v1.5.0
  • fix-build-ubuntu
  • tokens-in-env-files
  • fix-build
  • L2SS-2214-deploy-cdb
  • fix-missing-init
  • add-power-hardware-apply
  • L2SS-2129-Add-Subrack-Routine
  • Also-listen-internal-to-rpc
  • fix-build-dind
  • L2SS-2153--Improve-Error-Handling
  • L2SS-2153-Add-Grpc-Gateway-support
  • L2SS-1970-apsct-lol
  • v0.55.4 protected
  • 0.55.2.dev0
  • 0.55.1.dev0
  • 0.55.0.dev0
  • v0.54.0 protected
  • 0.53.2.dev0
  • 0.53.1.dev0
  • v0.52.3-r2 protected
  • remove-snmp-client
  • v0.52.3 protected
  • v0.52.3dev0 protected
  • 0.53.1dev0
  • v0.52.2-rc3 protected
  • v0.52.2-rc2 protected
  • v0.52.2-rc1 protected
  • v0.52.1.1 protected
  • v0.52.1 protected
  • v0.52.1-rc1 protected
  • v0.51.9-6 protected
  • v0.51.9-5 protected
41 results

Dockerfile

Blame
  • Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    Dockerfile 677 B
    ARG VERSION=latest
    ARG DOCKER_REGISTRY_HOST=nexus.engageska-portugal.pt
    ARG DOCKER_REGISTRY_USER=ska-docker
    FROM $DOCKER_REGISTRY_HOST/$DOCKER_REGISTRY_USER/tango-itango:${VERSION}
    
    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