chore(deadcode): remove runner images, extracted to runner-images repo
This commit is contained in:
parent
42e3e72d32
commit
460f5bbc21
4 changed files with 0 additions and 41 deletions
|
@ -1,6 +0,0 @@
|
||||||
#!/bin/bash
|
|
||||||
|
|
||||||
(
|
|
||||||
cd images
|
|
||||||
podman build -t ubuntu-ci:dev -f ./Dockerfile.ubuntu-latest
|
|
||||||
) || exit 1
|
|
3
build.sh
3
build.sh
|
@ -1,3 +0,0 @@
|
||||||
#!/bin/bash
|
|
||||||
|
|
||||||
echo "Nothing to build!"
|
|
|
@ -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
|
|
|
@ -1,3 +0,0 @@
|
||||||
[[registry]]
|
|
||||||
insecure = true
|
|
||||||
location = "host.containers.internal:5000"
|
|
Loading…
Reference in a new issue