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 39532562fe
commit 5371695b0a
2 changed files with 5 additions and 5 deletions
+3 -3
View File
@@ -33,14 +33,14 @@ spirit as [tic80-tools](../tic80-tools).
## Builder image ## Builder image
`builder.Dockerfile` bakes the pipeline's build-step dependencies `builder.Dockerfile` bakes the pipeline's build-step dependencies
(ACME assembler + make) into `git.teletypegames.org/internal/c64-builder`, (ACME assembler + make) into `git.teletypegames.org/build/c64-builder`,
so the build step no longer runs `apt-get` on every run (VICE is a so the build step no longer runs `apt-get` on every run (VICE is a
local-dev tool only and is not included): local-dev tool only and is not included):
```sh ```sh
docker build --platform linux/amd64 -f builder.Dockerfile \ docker build --platform linux/amd64 -f builder.Dockerfile \
-t git.teletypegames.org/internal/c64-builder:latest . -t git.teletypegames.org/build/c64-builder:latest .
docker push git.teletypegames.org/internal/c64-builder:latest docker push git.teletypegames.org/build/c64-builder:latest
``` ```
The served pipeline uploads `$(PROJECT)-$(VERSION).prg` and The served pipeline uploads `$(PROJECT)-$(VERSION).prg` and
+2 -2
View File
@@ -4,8 +4,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 \
# -t git.teletypegames.org/internal/c64-builder:latest . # -t git.teletypegames.org/build/c64-builder:latest .
# docker push git.teletypegames.org/internal/c64-builder:latest # docker push git.teletypegames.org/build/c64-builder:latest
FROM debian:stable-slim FROM debian:stable-slim