Commit Graph
4 Commits
Author SHA1 Message Date
Clayton Craft 45ea621702 readme: include note about requiring podman or docker for local build 2022-10-25 11:44:54 -07:00
Clayton Craft 78df0ff393 makefile: ignore errors during clean
The file(s) being removed may not exist, but make shouldn't fail because
of it:

        $ make clean
        rm ./firmware/*.uf2
        rm: cannot remove './firmware/*.uf2': No such file or directory
        make: *** [Makefile:10: clean] Error 1
        $ echo $?
        2

this also removes leading ./ from path in clean, and assumes that `make
clean` is being run from the top level repo dir
2022-10-24 12:12:16 -07:00
Clayton Craft 6ce32f01d4 Use podman, fall back to docker if unavailable 2022-10-24 10:49:53 -07:00
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