mirror of
https://github.com/egzumer/uv-k5-firmware-custom
synced 2024-11-21 17:19:57 +00:00
13 lines
404 B
Docker
13 lines
404 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/
|