add basic devcontainer setup

This commit is contained in:
Henny022p 2025-01-07 22:55:58 +01:00
parent 121b8c3e46
commit cc06c58fb4
2 changed files with 27 additions and 0 deletions

View File

@ -0,0 +1,21 @@
FROM debian
RUN apt update && apt upgrade && apt install -y --no-install-recommends \
cmake \
g++ \
gcc \
gcc-arm-none-eabi \
libpng-dev \
make \
python3 \
python3-pycparser \
&& rm -rf /var/lib/apt/lists/*
ADD https://github.com/pret/agbcc.git /agbcc
RUN cd /agbcc && \
./build.sh && \
mkdir -p /agbcc-install && \
./install.sh /agbcc-install
ENV AGBCC_PATH=/agbcc-install/tools/agbcc

View File

@ -0,0 +1,6 @@
{
"name": "zeldaret/tmc-dev",
"build": {
"dockerfile": "Containerfile"
}
}