From 460f5bbc212f7979a8302b1ce005faa845d29d5f Mon Sep 17 00:00:00 2001 From: Marc Cataford Date: Sat, 20 Jul 2024 16:49:50 -0400 Subject: [PATCH] chore(deadcode): remove runner images, extracted to runner-images repo --- build-ci.sh | 6 ------ build.sh | 3 --- images/Dockerfile.ubuntu-latest | 29 ----------------------------- images/files/registries.conf | 3 --- 4 files changed, 41 deletions(-) delete mode 100755 build-ci.sh delete mode 100644 build.sh delete mode 100644 images/Dockerfile.ubuntu-latest delete mode 100644 images/files/registries.conf diff --git a/build-ci.sh b/build-ci.sh deleted file mode 100755 index 6afb6f7..0000000 --- a/build-ci.sh +++ /dev/null @@ -1,6 +0,0 @@ -#!/bin/bash - -( - cd images - podman build -t ubuntu-ci:dev -f ./Dockerfile.ubuntu-latest -) || exit 1 diff --git a/build.sh b/build.sh deleted file mode 100644 index 76a28e6..0000000 --- a/build.sh +++ /dev/null @@ -1,3 +0,0 @@ -#!/bin/bash - -echo "Nothing to build!" diff --git a/images/Dockerfile.ubuntu-latest b/images/Dockerfile.ubuntu-latest deleted file mode 100644 index f186fa1..0000000 --- a/images/Dockerfile.ubuntu-latest +++ /dev/null @@ -1,29 +0,0 @@ -FROM ubuntu:22.04 - -ENV NODE_VERSION="20.12.2" - -RUN apt update && apt upgrade -y --autoremove - -RUN apt install -y \ - jq \ - podman \ - git \ - xz-utils \ - curl \ - ca-certificates \ - --no-install-recommends - -# Node needs to be installed to ensure that actions can run in the -# runner. - -WORKDIR tmp - -RUN curl https://nodejs.org/dist/v$NODE_VERSION/node-v$NODE_VERSION-linux-x64.tar.xz --output /tmp/node-v$NODE_VERSION-linux-x64.tar.xz && \ - tar -xf /tmp/node-v$NODE_VERSION-linux-x64.tar.xz && \ - cp -r /tmp/node-v$NODE_VERSION-linux-x64/bin/* /bin/ && \ - cp -r /tmp/node-v$NODE_VERSION-linux-x64/lib/* /lib/ && \ - rm -rf /tmp/node-* - -WORKDIR / - -COPY ./files/registries.conf /etc/containers/registries.conf diff --git a/images/files/registries.conf b/images/files/registries.conf deleted file mode 100644 index 067d712..0000000 --- a/images/files/registries.conf +++ /dev/null @@ -1,3 +0,0 @@ -[[registry]] -insecure = true -location = "host.containers.internal:5000"