diff --git a/.github/workflows/alpine.yaml b/.github/workflows/alpine.yaml index a4df55cc..c0291e03 100644 --- a/.github/workflows/alpine.yaml +++ b/.github/workflows/alpine.yaml @@ -36,7 +36,7 @@ jobs: build-push-images: strategy: matrix: - release: ['3.16', '3.17', '3.18', '3.19', '3.20', 'edge'] + release: ['3.18', '3.19', '3.20', 'edge'] runs-on: ubuntu-24.04 steps: diff --git a/alpine/3.16/Containerfile b/alpine/3.16/Containerfile deleted file mode 100644 index 81912594..00000000 --- a/alpine/3.16/Containerfile +++ /dev/null @@ -1,24 +0,0 @@ -FROM docker.io/library/alpine:3.16 - -LABEL com.github.containers.toolbox="true" \ - name="alpine-toolbox" \ - version="3.16" \ - usage="This image is meant to be used with the toolbox command" \ - summary="Base image for creating Alpine Linux toolbox containers" \ - maintainer="Ricardo Arguello " - -# Install extra packages -COPY extra-packages / -RUN apk update && \ - apk upgrade && \ - cat /extra-packages | xargs apk add -RUN rm /extra-packages - -# Enable password less sudo -RUN echo "%wheel ALL=(ALL) NOPASSWD: ALL" > /etc/sudoers.d/toolbox - -# Copy the os-release file -RUN cp -p /etc/os-release /usr/lib/os-release - -# Clear out /media -RUN rm -rf /media diff --git a/alpine/3.16/extra-packages b/alpine/3.16/extra-packages deleted file mode 100644 index 0876cf39..00000000 --- a/alpine/3.16/extra-packages +++ /dev/null @@ -1,37 +0,0 @@ -alpine-base -bash -bash-completion -bc -bzip2 -coreutils -curl -diffutils -docs -findutils -gcompat -git -gnupg -iproute2 -iputils -keyutils -less -libcap -man-pages -mandoc -musl-utils -ncurses-terminfo -net-tools -openssh-client -procps -rsync -shadow -sudo -tar -tcpdump -tree -unzip -util-linux -wget -which -xz -zip diff --git a/alpine/3.17/Containerfile b/alpine/3.17/Containerfile deleted file mode 100644 index 337b77e5..00000000 --- a/alpine/3.17/Containerfile +++ /dev/null @@ -1,24 +0,0 @@ -FROM docker.io/library/alpine:3.17 - -LABEL com.github.containers.toolbox="true" \ - name="alpine-toolbox" \ - version="3.17" \ - usage="This image is meant to be used with the toolbox command" \ - summary="Base image for creating Alpine Linux toolbox containers" \ - maintainer="Ricardo Arguello " - -# Install extra packages -COPY extra-packages / -RUN apk update && \ - apk upgrade && \ - cat /extra-packages | xargs apk add -RUN rm /extra-packages - -# Enable password less sudo -RUN echo "%wheel ALL=(ALL) NOPASSWD: ALL" > /etc/sudoers.d/toolbox - -# Copy the os-release file -RUN cp -p /etc/os-release /usr/lib/os-release - -# Clear out /media -RUN rm -rf /media diff --git a/alpine/3.17/extra-packages b/alpine/3.17/extra-packages deleted file mode 100644 index 0876cf39..00000000 --- a/alpine/3.17/extra-packages +++ /dev/null @@ -1,37 +0,0 @@ -alpine-base -bash -bash-completion -bc -bzip2 -coreutils -curl -diffutils -docs -findutils -gcompat -git -gnupg -iproute2 -iputils -keyutils -less -libcap -man-pages -mandoc -musl-utils -ncurses-terminfo -net-tools -openssh-client -procps -rsync -shadow -sudo -tar -tcpdump -tree -unzip -util-linux -wget -which -xz -zip