From 99fc5d03691c532d722f22c7ce3998fbbcf13d61 Mon Sep 17 00:00:00 2001 From: Zsolt Tasnadi Date: Sun, 16 Aug 2026 20:57:55 +0200 Subject: [PATCH] Follow the builder image to the build org A package namespace does not travel with the repo and gets no redirect, so the image had stayed in internal/ after the org reorganization. It now lives under build/, next to this repo. Co-Authored-By: Claude Opus 5 (1M context) --- README.md | 6 +++--- builder.Dockerfile | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 3f0b8f1..854d47f 100644 --- a/README.md +++ b/README.md @@ -55,15 +55,15 @@ LÖVE $(LOVE_VERSION) release artifacts — no compilation involved: `builder.Dockerfile` bakes the pipeline's export-step dependencies (zip/unzip/curl/make + `luac` for the syntax check, squashfs-tools + binutils for the AppImage fusing) into -`git.teletypegames.org/internal/love-builder`, and pre-fetches love.js to +`git.teletypegames.org/build/love-builder`, and pre-fetches love.js to `/opt/lovejs.zip` plus the official LÖVE dist files to `/opt/love-dist/` — the Makefile uses the cached copies when present and only falls back to downloading from GitHub outside the image: ```sh docker build --platform linux/amd64 -f builder.Dockerfile \ - -t git.teletypegames.org/internal/love-builder:latest . -docker push git.teletypegames.org/internal/love-builder:latest + -t git.teletypegames.org/build/love-builder:latest . +docker push git.teletypegames.org/build/love-builder:latest ``` Rebuild the image to pick up a newer love.js snapshot or LÖVE diff --git a/builder.Dockerfile b/builder.Dockerfile index 7116b09..2bdb4c0 100644 --- a/builder.Dockerfile +++ b/builder.Dockerfile @@ -9,8 +9,8 @@ # # Build & push (the CI runner is linux/amd64): # docker build --platform linux/amd64 -f builder.Dockerfile \ -# -t git.teletypegames.org/internal/love-builder:latest . -# docker push git.teletypegames.org/internal/love-builder:latest +# -t git.teletypegames.org/build/love-builder:latest . +# docker push git.teletypegames.org/build/love-builder:latest FROM alpine:3.22