b-parasite-esp32/.github/actions/build/Dockerfile

13 lines
No EOL
389 B
Docker

FROM debian:bullseye-slim
RUN apt-get update && \
apt-get -y install wget tar unzip make clang-format gcc-arm-none-eabi
RUN cd /opt && \
wget https://www.nordicsemi.com/-/media/Software-and-other-downloads/SDKs/nRF5/Binaries/nRF5SDK1702d674dde.zip -O nRF5_SDK.zip && \
unzip nRF5_SDK.zip && \
mv nRF5_SDK_17.0.2_d674dde nRF5_SDK
COPY build.sh /build.sh
ENTRYPOINT ["/build.sh"]