mirror of
https://github.com/Qortal/Brooklyn.git
synced 2025-01-31 07:12:18 +00:00
7 lines
225 B
Docker
7 lines
225 B
Docker
|
FROM debian:latest
|
||
|
LABEL Description="Image for building gnuK"
|
||
|
|
||
|
RUN apt update -y && apt install -y make gcc-arm-none-eabi && apt clean
|
||
|
|
||
|
CMD ["/bin/sh", "-c", "cd /gnuk/src && make clean && ./configure $GNUK_CONFIG && make"]
|