chore(deadcode): remove runner images, extracted to runner-images repo

This commit is contained in:
Marc 2024-07-20 16:49:50 -04:00
parent 42e3e72d32
commit 460f5bbc21
Signed by: marc
GPG key ID: 048E042F22B5DC79
4 changed files with 0 additions and 41 deletions

View file

@ -1,6 +0,0 @@
#!/bin/bash
(
cd images
podman build -t ubuntu-ci:dev -f ./Dockerfile.ubuntu-latest
) || exit 1

View file

@ -1,3 +0,0 @@
#!/bin/bash
echo "Nothing to build!"

View file

@ -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

View file

@ -1,3 +0,0 @@
[[registry]]
insecure = true
location = "host.containers.internal:5000"