summaryrefslogtreecommitdiff
path: root/Dockerfile
blob: cf25a84fb3eae9adfc43961e3a6cf2ade8d5c526 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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 config config
COPY bin/build.sh ./

CMD ["./build.sh"]