🐛 Fix circular base image dependency 🐛

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
This commit is contained in:
casjay
2026-07-02 21:09:44 -04:00
parent 2d90e2478e
commit 58eb2f0e09
+2 -2
View File
@@ -19,8 +19,8 @@ ARG IMAGE_REPO="dockersrc/xorg"
ARG IMAGE_VERSION="latest" ARG IMAGE_VERSION="latest"
ARG CONTAINER_VERSION="" ARG CONTAINER_VERSION=""
ARG PULL_URL="casjaysdev/xorg" ARG PULL_URL="debian"
ARG DISTRO_VERSION="${IMAGE_VERSION}" ARG DISTRO_VERSION="bookworm"
ARG BUILD_VERSION="${BUILD_DATE}" ARG BUILD_VERSION="${BUILD_DATE}"
FROM tianon/gosu:latest AS gosu FROM tianon/gosu:latest AS gosu