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

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"]