mirror of
https://github.com/silenty4ng/uv-k5-firmware-chinese-lts
synced 2025-01-15 14:54:40 +00:00
12 lines
No EOL
403 B
Docker
12 lines
No EOL
403 B
Docker
FROM --platform=amd64 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
|
|
RUN pacman -Syyu python-pip --noconfirm
|
|
RUN pacman -Syyu python-crcmod --noconfirm
|
|
WORKDIR /app
|
|
COPY . .
|
|
|
|
RUN git submodule update --init --recursive
|
|
#RUN make && cp firmware* compiled-firmware/ |