Removed buildx

This commit is contained in:
2025-03-20 06:17:08 +03:00
parent 1581e7c5c7
commit 1ed40cbcf4

View File

@@ -50,7 +50,7 @@ build_docker_image() {
fi
echo "Building Docker image..."
export DOCKER_BUILDKIT=1
if sudo docker buildx build -t "$IMAGE_NAME" .; then
if sudo docker build -t "$IMAGE_NAME" .; then
echo "Docker image built successfully."
return 0
else