tree: 81d9df3382192362fd21e32b41fe3adbdf51bcea [path history] [tgz]
  1. Dockerfile_debian_8
  2. Dockerfile_debian_8_i386
  3. Dockerfile_debian_9
  4. Dockerfile_debian_9_i386
  5. Dockerfile_fedora_22
  6. Dockerfile_fedora_22_i386
  7. Dockerfile_fedora_23
  8. Dockerfile_fedora_23_i386
  9. Dockerfile_fedora_24
  10. Dockerfile_fedora_24_i386
  11. Dockerfile_fedora_25
  12. Dockerfile_fedora_25_i386
  13. Dockerfile_gentoo
  14. Dockerfile_ubuntu_14.04
  15. Dockerfile_ubuntu_14.04_i386
  16. Dockerfile_ubuntu_15.10
  17. Dockerfile_ubuntu_15.10_i386
  18. Dockerfile_ubuntu_16.04
  19. Dockerfile_ubuntu_16.04_i386
  20. Dockerfile_ubuntu_16.10
  21. Dockerfile_ubuntu_16.10_i386
  22. Dockerfile_ubuntu_17.04
  23. Dockerfile_ubuntu_17.04_i386
  24. README.md
docker/README.md

Packaging dockerfiles

This folder contains Dockerfiles for building Ring. They are used by Makefile.packaging, at the root of this repository

32bit images

Some of the Dockerfiles refer to 32bit images in the savoirfairelinux docker hub organization. These images are generated with the following method:

Debian/Ubuntu

  • Download 32bit system iso or image
  • Install the system in a container or virtual magine
  • Run the following commands from the system:
    • apt update
    • apt upgrade
    • apt install git docker.io debootstrap
    • git clone https://github.com/moby/moby.git
    • ./moby/contrib/mkimage.sh -t savoirfairelinux/<distro>32:<distroversion> debootstrap --variant=minbase --arch=i386 <codename>
    • docker login
    • docker push savoirfairelinux/<distro>32:<distroversion>

Fedora

TODO