This commit is contained in:
Mike Trudeau
2026-02-13 20:30:52 +00:00
parent 71ffec0d88
commit 5b106896a1
127 changed files with 35217 additions and 0 deletions

9
build/Dockerfile.dapper Normal file
View File

@@ -0,0 +1,9 @@
FROM ubuntu:20.10 AS sdcc
RUN apt-get update \
&& apt-get install -y vim make sdcc \
&& apt-get autoclean
ENV DAPPER_SOURCE /source
ENV DAPPER_OUTPUT ./build/bin
WORKDIR ${DAPPER_SOURCE}
ENTRYPOINT ["./build/scripts/entry.sh"]
CMD ["help"]