Fix Docker (#450)

This commit is contained in:
iranl
2024-08-12 17:36:20 +02:00
committed by GitHub
parent e84b944af2
commit c2793a6aa8
4 changed files with 6 additions and 4 deletions

View File

@@ -1,4 +1,4 @@
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
docker run --rm -it -v $PWD/..:/src -w /src ${IMAGE_NAME} /bin/bash -c "make deps && make updater && make debug"