Skip to content
Snippets Groups Projects
Select Git revision
  • 078f06d62df623530562ed4745e54ce81f0c3ac7
  • master default protected
  • deploy-components-parallel
  • fix-chrony-exporter
  • 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
  • v0.52.8-rc1 protected
  • 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
41 results

Dockerfile

  • Jan David Mol's avatar
    L2SS-497: Fix typo in IERS stub filename
    Jan David Mol authored
    078f06d6
    History
    Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    Dockerfile 739 B
    ARG SOURCE_IMAGE
    FROM ${SOURCE_IMAGE}
    
    RUN sudo apt-get update && sudo apt-get install -y git && sudo apt-get clean
    
    COPY lofar-requirements.txt /lofar-requirements.txt
    RUN sudo pip3 install -r /lofar-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 WSRT_Measures_stub /opt/IERS/${IERS_DIRNAME}
    RUN ln -sfT /opt/IERS/${IERS_DIRNAME} /opt/IERS/current
    
    COPY 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