Skip to content
Snippets Groups Projects
Select Git revision
  • 719a0741ba8374294fd84d85a030763c85b65be7
  • 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.5 protected
  • 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
41 results

Dockerfile

  • Jan David Mol's avatar
    L2SS-785: Force rebuild of lofar-device-base in gitlab
    Jan David Mol authored
    719a0741
    History
    Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    Dockerfile 999 B
    ARG SOURCE_IMAGE
    FROM ${SOURCE_IMAGE}
    
    RUN sudo apt-get update && sudo apt-get install -y git g++ python3-dev && sudo apt-get clean
    
    
    COPY docker-compose/lofar-device-base/lofar-requirements.txt /lofar-requirements.txt
    RUN sudo pip3 install -r /lofar-requirements.txt
    
    COPY tangostationcontrol/requirements.txt /tangostationcontrol-requirements.txt
    RUN sudo pip3 install -r /tangostationcontrol-requirements.txt
    
    # install and use ephimerides and geodetic ("measures") tables for casacore.
    # we install a _stub_ since the tables need to be deployed explicitly from within the software.
    RUN sudo mkdir -p /opt/IERS && sudo chmod a+rwx /opt/IERS
    ARG IERS_DIRNAME=IERS-1970-01-01T00:00:00-stub
    COPY docker-compose/lofar-device-base/WSRT_Measures_stub /opt/IERS/${IERS_DIRNAME}
    RUN ln -sfT /opt/IERS/${IERS_DIRNAME} /opt/IERS/current
    
    COPY docker-compose/lofar-device-base/casarc /home/tango/.casarc
    
    ENV TANGO_LOG_PATH=/var/log/tango
    RUN sudo mkdir -p /var/log/tango && sudo chmod a+rwx /var/log/tango