fix: change Docker build command to load images instead of pushing

- Updated the Docker build command in build-docker.sh to use --load instead of --push, allowing for local image loading during the build process.
- This change facilitates testing and debugging of Docker images before deployment.
This commit is contained in:
Daniel Luiz Alves
2025-06-23 17:13:59 -03:00
parent 264521f1c4
commit a669a6c048

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