summaryrefslogtreecommitdiff
path: root/.devcontainer/Containerfile
blob: da2598372e429d342b8d4a82bb0c57119eb06299 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
FROM debian

RUN apt update && apt upgrade -y && apt install -y --no-install-recommends \
    ca-certificates \
    cmake \
    g++ \
    gcc \
    gcc-arm-none-eabi \
    git \
    libpng-dev \
    make \
    python3 \
    python3-pycparser \
    ssh-client \
    && rm -rf /var/lib/apt/lists/*

RUN git clone 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