From 3dd7bc1182a79a3cfa2079d110ad167e75c81668 Mon Sep 17 00:00:00 2001 From: Marc Cataford Date: Tue, 9 Apr 2024 00:29:03 -0400 Subject: [PATCH] build: manually pushed ci image --- images/Dockerfile.ubuntu-latest | 11 +++++++++++ images/files/registries.conf | 3 +++ 2 files changed, 14 insertions(+) create mode 100644 images/Dockerfile.ubuntu-latest create mode 100644 images/files/registries.conf 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"