From 509352ab9463bfd7e38d1a714f52db1bab5d12e2 Mon Sep 17 00:00:00 2001 From: Tim Smith Date: Mon, 1 Jul 2024 11:42:19 -1000 Subject: [PATCH] Remove EOL Debian 10 Signed-off-by: Tim Smith --- .github/workflows/main.yaml | 1 - debian-10/Dockerfile | 68 ------------------------------------- 2 files changed, 69 deletions(-) delete mode 100644 debian-10/Dockerfile diff --git a/.github/workflows/main.yaml b/.github/workflows/main.yaml index a61fde0..3bfb4ad 100644 --- a/.github/workflows/main.yaml +++ b/.github/workflows/main.yaml @@ -21,7 +21,6 @@ jobs: - "centos-8" - "centos-stream-8" - "centos-stream-9" - - "debian-10" - "debian-11" - "debian-12" - "eurolinux-7" diff --git a/debian-10/Dockerfile b/debian-10/Dockerfile deleted file mode 100644 index d5d72ef..0000000 --- a/debian-10/Dockerfile +++ /dev/null @@ -1,68 +0,0 @@ -FROM debian:10 -LABEL maintainer="sean@sean.io" -ARG BUILD_DATE -ARG VCS_REF - -LABEL org.opencontainers.image.created=$BUILD_DATE -LABEL org.opencontainers.image.title="test-kitchen/dokken-images" -LABEL org.opencontainers.image.description="A Docker container for testing debian-10" -LABEL org.opencontainers.image.source="https://github.com/test-kitchen/dokken-images" -LABEL org.opencontainers.image.revision=$VCS_REF -LABEL org.opencontainers.image.vendor="test-kitchen" -LABEL org.opencontainers.image.licenses="Apache-2.0" - -ENV DEBIAN_FRONTEND noninteractive - -# hadolint ignore=DL3041 -RUN /usr/bin/apt-get update && \ - /usr/bin/apt-get -y install \ - apt-transport-https \ - apt-utils \ - cron \ - curl \ - dbus \ - dirmngr \ - dmidecode \ - gnupg \ - ifupdown \ - iptables \ - iputils-ping \ - kmod \ - less \ - locales \ - lsb-release \ - lsof \ - net-tools \ - netcat \ - nmap \ - perl \ - procps \ - strace \ - sudo \ - systemd \ - tcpdump \ - telnet \ - tzdata \ - udev \ - vim-tiny \ - wget && \ - /usr/bin/apt-get clean && \ - /usr/bin/apt-get -y autoremove && \ - rm -rf /tmp/* /var/tmp/* && \ - ln -s /bin/mkdir /usr/bin/mkdir && \ - # Don't start any optional services. - find /etc/systemd/system \ - /lib/systemd/system \ - -path '*.wants/*' \ - \( -name '*getty*' \ - -or -name '*apt-daily*' \ - -or -name '*systemd-timesyncd*' \ - -or -name '*systemd-logind*' \ - -or -name '*systemd-vconsole-setup*' \ - -or -name '*systemd-readahead*' \ - -or -name '*udev*' \) \ - -exec rm -v {} \; && \ - systemctl set-default multi-user.target && \ - systemctl mask dev-hugepages.mount sys-fs-fuse-connections.mount network.service - -CMD [ "/bin/systemd" ]