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"