Skip to content
Snippets Groups Projects
Select Git revision
  • 0d81662d26e96d82fecb40a73008827c6936f324
  • master default
2 results

Dockerfile

Blame
    • nimrod's avatar
      0d81662d
      Don't build an static binary. · 0d81662d
      nimrod authored
      I haven't gotten the static binary build to work. And really there's
      little point since the same library builds will be used in the end
      image.
      0d81662d
      History
      Don't build an static binary.
      nimrod authored
      I haven't gotten the static binary build to work. And really there's
      little point since the same library builds will be used in the end
      image.
    main.yml 582 B
    ---
    # tasks file for debian-bootstrap
    
    - name: Update APT sources
      raw: DEBIAN_FRONTEND=noninteractive apt-get update
      changed_when: False
    
    - name: APT install Python
      raw: DEBIAN_FRONTEND=noninteractive apt-get install -qy python2.7 python
      register: debian_bootstrap_install_python
      changed_when: "'Unpacking' in debian_bootstrap_install_python.stdout"
    
    - name: Install requirements for more complete facts
      apt:
          name:
              - iproute
              - lsb-release
          state: present
          update_cache: yes
          cache_valid_time: 3600
    
    - name: Gather facts
      setup: