forked from mirror/uv-k5-firmware
44b2abd68e
Dockerfile and script to quickly build the firmware without the need to configure a local environment and keep it as a baseline for development.
11 lines
304 B
Docker
11 lines
304 B
Docker
FROM archlinux:latest
|
|
WORKDIR /app
|
|
COPY . .
|
|
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 git submodule update --init --recursive
|
|
#RUN make && cp firmware* compiled-firmware/
|