fix: change Docker build command from --push to --load

- Updated the Docker build command in build-docker.sh to use --load instead of --push, allowing for local image loading without pushing to a registry.
This commit is contained in:
Daniel Luiz Alves
2025-06-20 09:48:42 -03:00
parent 9dfb034c2e
commit 185fa4c191

View File

@@ -23,7 +23,7 @@ docker buildx build \
--no-cache \
-t kyantech/palmr:latest \
-t kyantech/palmr:$TAG \
--push \
--load \
.
if [ $? -eq 0 ]; then