From f979703967ebbb79b2482fb5f20c33e9dbae409a Mon Sep 17 00:00:00 2001 From: colin-pm Date: Wed, 24 Feb 2021 20:21:24 -0600 Subject: [PATCH] Removed Debian 9 support Since the Debain 9 image is not passing tests and the debain packages are not popular on Docker Hub, Docker 9 support is getting pulled. Signed-off-by: colin-pm --- README.md | 1 - debian/debian_9/Dockerfile | 48 ------------------------- debian/debian_9/docker-compose.test.yml | 6 ---- docker-compose.yml | 7 ---- 4 files changed, 62 deletions(-) delete mode 100644 debian/debian_9/Dockerfile delete mode 100644 debian/debian_9/docker-compose.test.yml diff --git a/README.md b/README.md index c7d7a1e..958f719 100644 --- a/README.md +++ b/README.md @@ -21,7 +21,6 @@ The images listed below are intended for **generating open-source library packag * CentOS 8 ### Debian -* Debian 9.x (Stretch) * Debian 10.x (Buster) ## Instructions diff --git a/debian/debian_9/Dockerfile b/debian/debian_9/Dockerfile deleted file mode 100644 index 5ecd068..0000000 --- a/debian/debian_9/Dockerfile +++ /dev/null @@ -1,48 +0,0 @@ -FROM debian:9 - -ENV DEBIAN_FRONTEND=noninteractive - -RUN apt-get clean \ - && apt-get update \ - && apt-get install -y \ - gawk \ - wget \ - git-core \ - diffstat \ - unzip \ - texinfo \ - gcc-multilib \ - build-essential \ - chrpath \ - socat \ - cpio \ - python3 \ - python3-pip \ - python3-pexpect \ - xz-utils \ - debianutils \ - iputils-ping \ - python3-git \ - python3-jinja2 \ - libegl1-mesa \ - libsdl1.2-dev \ - locales \ - pylint3 \ - xterm \ - python3-subunit \ - mesa-common-dev \ - openssh-server \ - sudo \ - && useradd -ms /bin/bash yocto \ - && printf "yocto:yocto" | chpasswd \ - && adduser yocto sudo \ - && printf "yocto ALL= NOPASSWD: ALL\\n" >> /etc/sudoers \ - && echo 'en_US.UTF-8 UTF-8' >> /etc/locale.gen \ - && locale-gen \ - && echo 'export LC_ALL=en_US.UTF-8' >> ~yocto/.bashrc \ - && echo 'export LANG=en_US.UTF-8' >> ~yocto/.bashrc \ - && echo 'export LANGUAGE=en+US.UTF-8' >> ~yocto/.bashrc - -USER yocto -WORKDIR /home/yocto -CMD /bin/bash diff --git a/debian/debian_9/docker-compose.test.yml b/debian/debian_9/docker-compose.test.yml deleted file mode 100644 index 4cf12cc..0000000 --- a/debian/debian_9/docker-compose.test.yml +++ /dev/null @@ -1,6 +0,0 @@ -sut: - build: . - command: /bin/bash -i -c " - git clone git://git.yoctoproject.org/poky - && source poky/oe-init-build-env - && bitbake --dry-run core-image-minimal" diff --git a/docker-compose.yml b/docker-compose.yml index bbc571e..c0158bc 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -14,13 +14,6 @@ services: image: "${DOCKER_USERNAME}/yocto-centos8:${DOCKER_BUILD_TAG}" container_name: yocto-centos8 tty: true - yocto-debian9: - build: - context: debian/debian_9 - dockerfile: Dockerfile - image: "${DOCKER_USERNAME}/yocto-debian9:${DOCKER_BUILD_TAG}" - container_name: yocto-debian9 - tty: true yocto-debian10: build: context: debian/debian_10