summaryrefslogtreecommitdiff
path: root/Dockerfile
blob: 388cdc502193bef453d3906ac955ab3187c3f013 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
FROM zmkfirmware/zmk-build-arm:2.4

WORKDIR /app

COPY config/west.yml config/west.yml

# West Init
RUN west init -l config
# West Update
RUN west update
# West Zephyr export
RUN west zephyr-export

COPY bin/build.sh ./

CMD ["./build.sh"]