From 46b05dab2fe12142eee570e0e8a0c6e9a9d3c597 Mon Sep 17 00:00:00 2001 From: Tim Smith Date: Sun, 23 Apr 2023 23:36:30 +0100 Subject: [PATCH] Remove long EOL centos-6 (#88) It's time folks. Signed-off-by: Tim Smith --- .github/workflows/main.yaml | 1 - centos-6/Dockerfile | 49 ------------------------------------- 2 files changed, 50 deletions(-) delete mode 100644 centos-6/Dockerfile diff --git a/.github/workflows/main.yaml b/.github/workflows/main.yaml index e82d2a4..57360a2 100644 --- a/.github/workflows/main.yaml +++ b/.github/workflows/main.yaml @@ -103,7 +103,6 @@ jobs: fail-fast: false matrix: os-without-arm64: - - "centos-6" - "oraclelinux-6" steps: - name: Checkout diff --git a/centos-6/Dockerfile b/centos-6/Dockerfile deleted file mode 100644 index 191b455..0000000 --- a/centos-6/Dockerfile +++ /dev/null @@ -1,49 +0,0 @@ -FROM centos:6 -LABEL maintainer="sean@sean.io" -ARG BUILD_DATE -ARG VCS_REF - -LABEL org.label-schema.schema-version="1.0" -LABEL org.label-schema.build-date=$BUILD_DATE -LABEL org.label-schema.name="test-kitchen/dokken-images" -LABEL org.label-schema.description="A Docker container for testing centos-6" -LABEL org.label-schema.vcs-url="https://github.com/test-kitchen/dokken-images" -LABEL org.label-schema.vcs-ref=$VCS_REF -LABEL org.label-schema.vendor="test-kitchen" - -# hadolint ignore=DL3033,SC2016 -RUN sed -i '/mirrorlist/d' /etc/yum.repos.d/*.repo && \ - sed -i -e 's/#baseurl/baseurl/g' /etc/yum.repos.d/*.repo && \ - sed -i -e 's/mirror.centos.org\/centos\/\$releasever/mirrors.vcea.wsu.edu\/centos-vault\/6.10/g' /etc/yum.repos.d/*.repo && \ - yum -y install \ - ca-certificates \ - cronie \ - curl \ - dmidecode \ - gnupg2 \ - initscripts \ - iptables \ - iputils \ - lsof \ - nc \ - net-tools \ - nmap \ - openssl \ - passwd \ - procps \ - redhat-lsb-core \ - strace \ - sudo \ - tcpdump \ - telnet \ - upstart \ - util-linux \ - vim-minimal \ - wget \ - which && \ - yum upgrade -y && \ - yum clean all && \ - rm -rf /var/cache/yum && \ - rm -rf /var/log/* - -CMD [ "/sbin/init" ]