chore: add glance images (#809)

diff --git a/images/cloud-archive-base/Earthfile b/images/cloud-archive-base/Earthfile
new file mode 100644
index 0000000..75e2c73
--- /dev/null
+++ b/images/cloud-archive-base/Earthfile
@@ -0,0 +1,21 @@
+VERSION 0.7
+
+image:
+  FROM ../base+image
+  DO ../+APT_INSTALL --PACKAGES "ca-certificates lsb-release python3-distutils sudo ubuntu-cloud-keyring"
+  ARG RELEASE
+  IF [ "$(lsb_release -sc)" = "jammy" ]
+    IF [ "${RELEASE}" = "yoga" ]
+      # NOTE: Yoga shipped with 22.04, so no need to add an extra repository.
+      RUN echo "" > /etc/apt/sources.list.d/cloudarchive.list
+    ELSE IF [ "${RELEASE}" = "zed" ]
+      RUN echo "deb http://ubuntu-cloud.archive.canonical.com/ubuntu $(lsb_release -sc)-updates/${RELEASE} main" > /etc/apt/sources.list.d/cloudarchive.list
+    ELSE IF [ "${RELEASE}" = "2023.1" ]
+      RUN echo "deb http://ubuntu-cloud.archive.canonical.com/ubuntu $(lsb_release -sc)-updates/antelope main" > /etc/apt/sources.list.d/cloudarchive.list
+    ELSE IF [ "${RELEASE}" = "2023.2" ]
+      RUN echo "deb http://ubuntu-cloud.archive.canonical.com/ubuntu $(lsb_release -sc)-updates/bobcat main" > /etc/apt/sources.list.d/cloudarchive.list
+    ELSE
+      RUN echo "${RELEASE} is not supported on $(lsb_release -sc)"
+      RUN exit 1
+    END
+  END