CI/CD templates for Commodore Plus/4 projects: the c64-tools set with xplus4 and the plus4-builder image

This commit is contained in:
2026-09-07 23:20:17 +02:00
commit 8f6d420e3d
6 changed files with 187 additions and 0 deletions
+18
View File
@@ -0,0 +1,18 @@
# CI builder image for Plus/4 projects: ACME assembler + make, so the
# pipeline's build step does not run apt-get on every run. The VICE
# emulator (xplus4) is a local-dev tool only and is intentionally not included.
#
# Build & push (the CI runner is linux/amd64):
# docker build --platform linux/amd64 -f builder.Dockerfile \
# -t git.teletypegames.org/build/plus4-builder:latest .
# docker push git.teletypegames.org/build/plus4-builder:latest
FROM debian:stable-slim
RUN apt-get update \
&& apt-get install -y --no-install-recommends make acme zip curl ca-certificates \
&& rm -rf /var/lib/apt/lists/*
WORKDIR /workspace
CMD ["/bin/bash"]