Files
Clayton Craft a24577fb44 dockerfile: prefix image name with docker.io
This makes sure that all versions of podman can resolve the image
successfully
2022-10-24 10:20:30 -07:00

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