mirror of
https://github.com/dockersrc/xorg
synced 2026-09-21 08:03:25 -04:00
🐛 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:
+2
-2
@@ -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
|
||||||
|
|||||||
Reference in New Issue
Block a user