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:
@@ -62,14 +62,14 @@ templates.
|
|||||||
|
|
||||||
`builder.Dockerfile` wraps `barichello/godot-ci` (editor + web export
|
`builder.Dockerfile` wraps `barichello/godot-ci` (editor + web export
|
||||||
templates) with make/zip preinstalled as
|
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:
|
runs `apt-get` on every run. The tag tracks the Godot version:
|
||||||
|
|
||||||
```sh
|
```sh
|
||||||
docker build --platform linux/amd64 -f builder.Dockerfile \
|
docker build --platform linux/amd64 -f builder.Dockerfile \
|
||||||
--build-arg GODOT_VERSION=4.6 \
|
--build-arg GODOT_VERSION=4.6 \
|
||||||
-t git.teletypegames.org/internal/godot-builder:4.6 .
|
-t git.teletypegames.org/build/godot-builder:4.6 .
|
||||||
docker push git.teletypegames.org/internal/godot-builder:4.6
|
docker push git.teletypegames.org/build/godot-builder:4.6
|
||||||
```
|
```
|
||||||
|
|
||||||
Detailed documentation lives on the wiki: `/development/godot`.
|
Detailed documentation lives on the wiki: `/development/godot`.
|
||||||
|
|||||||
+2
-2
@@ -7,8 +7,8 @@
|
|||||||
# Build & push (the CI runner is linux/amd64):
|
# Build & push (the CI runner is linux/amd64):
|
||||||
# docker build --platform linux/amd64 -f builder.Dockerfile \
|
# docker build --platform linux/amd64 -f builder.Dockerfile \
|
||||||
# --build-arg GODOT_VERSION=4.6 \
|
# --build-arg GODOT_VERSION=4.6 \
|
||||||
# -t git.teletypegames.org/internal/godot-builder:4.6 .
|
# -t git.teletypegames.org/build/godot-builder:4.6 .
|
||||||
# docker push git.teletypegames.org/internal/godot-builder:4.6
|
# docker push git.teletypegames.org/build/godot-builder:4.6
|
||||||
|
|
||||||
ARG GODOT_VERSION=4.6
|
ARG GODOT_VERSION=4.6
|
||||||
FROM barichello/godot-ci:${GODOT_VERSION}
|
FROM barichello/godot-ci:${GODOT_VERSION}
|
||||||
|
|||||||
Reference in New Issue
Block a user