mirror of
https://github.com/tillitis/tillitis-key1.git
synced 2025-05-11 18:34:58 -04:00
Add picosdk to dockerfile
This commit is contained in:
parent
df6f66c064
commit
8894eb4247
1 changed files with 11 additions and 0 deletions
|
@ -40,6 +40,10 @@ RUN apt-get -qq update -y \
|
||||||
vim \
|
vim \
|
||||||
xdot \
|
xdot \
|
||||||
sdcc \
|
sdcc \
|
||||||
|
cmake \
|
||||||
|
gcc-arm-none-eabi \
|
||||||
|
libnewlib-arm-none-eabi \
|
||||||
|
libstdc++-arm-none-eabi-newlib
|
||||||
&& rm -rf /var/lib/apt/lists/*
|
&& rm -rf /var/lib/apt/lists/*
|
||||||
|
|
||||||
|
|
||||||
|
@ -85,6 +89,13 @@ RUN git >/usr/local/repo-commit-nextpnr describe --tags --always --dirty
|
||||||
WORKDIR /
|
WORKDIR /
|
||||||
RUN rm -rf /src
|
RUN rm -rf /src
|
||||||
|
|
||||||
|
RUN git clone https://github.com/raspberrypi/pico-sdk.git /usr/local/picosdk
|
||||||
|
WORKDIR /usr/local/picosdk
|
||||||
|
RUN git checkout 1.5.0 \
|
||||||
|
&& git submodule-update --init
|
||||||
|
RUN git >/usr/local/repo-commit-picosdk describe --tags --always --dirty
|
||||||
|
WORKDIR /
|
||||||
|
|
||||||
|
|
||||||
FROM base
|
FROM base
|
||||||
LABEL org.opencontainers.image.description="Toolchain for building TKey FPGA bitstream, firmware, apps"
|
LABEL org.opencontainers.image.description="Toolchain for building TKey FPGA bitstream, firmware, apps"
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue