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) <noreply@anthropic.com>
This commit is contained in:
2026-08-16 20:57:55 +02:00
co-authored by Claude Opus 5
parent bb4d13558f
commit d62fd5aecb
2 changed files with 5 additions and 5 deletions
+3 -3
View File
@@ -62,14 +62,14 @@ templates.
`builder.Dockerfile` wraps `barichello/godot-ci` (editor + web export
templates) with make/zip preinstalled as
`git.teletypegames.org/internal/godot-builder`, so the build step no longer
`git.teletypegames.org/build/godot-builder`, so the build step no longer
runs `apt-get` on every run. The tag tracks the Godot version:
```sh
docker build --platform linux/amd64 -f builder.Dockerfile \
--build-arg GODOT_VERSION=4.6 \
-t git.teletypegames.org/internal/godot-builder:4.6 .
docker push git.teletypegames.org/internal/godot-builder:4.6
-t git.teletypegames.org/build/godot-builder:4.6 .
docker push git.teletypegames.org/build/godot-builder:4.6
```
Detailed documentation lives on the wiki: `/development/godot`.