2023-08-15 16:08:55 +08:00
|
|
|
FROM archlinux:latest
|
|
|
|
RUN pacman -Syyu base-devel --noconfirm
|
|
|
|
RUN pacman -Syyu arm-none-eabi-gcc --noconfirm
|
|
|
|
RUN pacman -Syyu arm-none-eabi-newlib --noconfirm
|
|
|
|
RUN pacman -Syyu git --noconfirm
|
2023-09-28 21:51:14 +08:00
|
|
|
RUN pacman -Syyu python-pip --noconfirm
|
|
|
|
RUN pacman -Syyu python-crcmod --noconfirm
|
|
|
|
WORKDIR /app
|
|
|
|
COPY . .
|
2023-08-15 16:08:55 +08:00
|
|
|
|
|
|
|
RUN git submodule update --init --recursive
|
|
|
|
#RUN make && cp firmware* compiled-firmware/
|