mirror of
https://github.com/logicog/RTLPlayground.git
synced 2026-08-30 14:52:51 +08:00
- Debian 13 (trixie) based with sdcc 4.5.0 from apt - Includes gcc, make, xxd, python3, libjson-c-dev, golang-go - Add .dockerignore to exclude build artifacts - Add Docker usage section to README (collapsible)
20 lines
360 B
Docker
20 lines
360 B
Docker
FROM debian:13-slim
|
|
|
|
RUN apt-get update && apt-get install -y \
|
|
make \
|
|
gcc \
|
|
sdcc \
|
|
xxd \
|
|
python3 \
|
|
libjson-c-dev \
|
|
golang-go \
|
|
git \
|
|
&& rm -rf /var/lib/apt/lists/*
|
|
|
|
# git safe.directory for mounted repos (Makefile uses git describe)
|
|
RUN git config --global --add safe.directory /workspace
|
|
|
|
WORKDIR /workspace
|
|
|
|
CMD ["bash"]
|