Files
c64-tools/builder.Dockerfile
T
mr.zeroandClaude Opus 5 5371695b0a 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>
2026-08-16 20:57:55 +02:00

19 lines
642 B
Docker

# CI builder image for C64 projects: ACME assembler + make, so the
# pipeline's build step does not run apt-get on every run. The VICE
# emulator 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/c64-builder:latest .
# docker push git.teletypegames.org/build/c64-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"]