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

RUN mkdir -p /app/firmware

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