From 58eb2f0e09049ea7e1cf036400adbb4365209599 Mon Sep 17 00:00:00 2001 From: casjay Date: Thu, 2 Jul 2026 21:09:44 -0400 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=9B=20Fix=20circular=20base=20image=20?= =?UTF-8?q?dependency=20=F0=9F=90=9B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The xorg Dockerfile was trying to use casjaysdev/xorg:latest as its base image, but that image doesn't exist yet — it's what we're building. Changed to use official debian:bookworm as the base since the pkmgr script uses apt/apt-get and the packages (xorg, x11-apps) are Debian packages. - Dockerfile: PULL_URL casjaysdev/xorg → debian, DISTRO_VERSION latest → bookworm Dockerfile --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 1eb17ad..2fc20db 100644 --- a/Dockerfile +++ b/Dockerfile @@ -19,8 +19,8 @@ ARG IMAGE_REPO="dockersrc/xorg" ARG IMAGE_VERSION="latest" ARG CONTAINER_VERSION="" -ARG PULL_URL="casjaysdev/xorg" -ARG DISTRO_VERSION="${IMAGE_VERSION}" +ARG PULL_URL="debian" +ARG DISTRO_VERSION="bookworm" ARG BUILD_VERSION="${BUILD_DATE}" FROM tianon/gosu:latest AS gosu