commit 3dd7bc1182a79a3cfa2079d110ad167e75c81668 Author: Marc Cataford Date: Tue Apr 9 00:29:03 2024 -0400 build: manually pushed ci image diff --git a/images/Dockerfile.ubuntu-latest b/images/Dockerfile.ubuntu-latest new file mode 100644 index 0000000..a207942 --- /dev/null +++ b/images/Dockerfile.ubuntu-latest @@ -0,0 +1,11 @@ +FROM ubuntu:22.04 + +RUN apt update && apt upgrade -y --autoremove + +RUN apt install -y \ + jq \ + podman \ + nodejs \ + git + +COPY ./files/registries.conf /etc/containers/registries.conf diff --git a/images/files/registries.conf b/images/files/registries.conf new file mode 100644 index 0000000..067d712 --- /dev/null +++ b/images/files/registries.conf @@ -0,0 +1,3 @@ +[[registry]] +insecure = true +location = "host.containers.internal:5000"