uv-k5-firmware/Dockerfile
nrlourenco 44b2abd68e
Build firmware with Docker (#8)
Dockerfile and script to quickly build the firmware without the need to configure a local environment and keep it as a baseline for development.
2023-08-15 09:08:55 +01:00

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/