summaryrefslogtreecommitdiff
path: root/Dockerfile
blob: bbb8e9ff012e07dd9ec9f6f9d70fec6a1c411ed6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
FROM docker.io/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"]