tree: 56c11249756e8c805cd209f3e299e14115048e66 [path history] [tgz]
  1. Dockerfile_debian_10
  2. Dockerfile_debian_11
  3. Dockerfile_debian_testing
  4. Dockerfile_debian_unstable
  5. Dockerfile_fedora_33
  6. Dockerfile_fedora_34
  7. Dockerfile_fedora_35
  8. Dockerfile_opensuse-leap_15.2
  9. Dockerfile_opensuse-leap_15.3
  10. Dockerfile_opensuse-tumbleweed
  11. Dockerfile_raspbian_10_armhf
  12. Dockerfile_snap
  13. Dockerfile_ubuntu_18.04
  14. Dockerfile_ubuntu_20.04
  15. Dockerfile_ubuntu_21.04
  16. Dockerfile_ubuntu_21.10
  17. 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

Snap

Dockerfile_snap is from stable.Dockerfile upstream, under GPLv3-only, and is not considered part of the project. It is patched with ../patches/docker-snap-build-scripts.patch to add and invoke our build script.