a24577fb44
This makes sure that all versions of podman can resolve the image successfully
17 lines
253 B
Docker
17 lines
253 B
Docker
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"]
|