Files
nuki_hub/Docker/build_with_docker_pio_debug.sh
David Girón d8dd08edf7 chore: unify building system with Makefile (#398)
* 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
2024-06-09 09:31:05 +07:00

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