* reorder and extend platformio config * update gitignore * add processing extra_script * add makefile * update github workflow * update docker build * add release and debug targets * define custom_build debug * fix custom_build target * update README
5 lines
152 B
Bash
Executable File
5 lines
152 B
Bash
Executable File
set -ex
|
|
IMAGE_NAME=nuki_hub_build
|
|
docker build -f ./Dockerfile -t ${IMAGE_NAME} ..
|
|
docker run --rm -it -v $PWD/..:/src -w /src ${IMAGE_NAME} make debug
|