Naseem Ibrahim

19 papers A 2C 1Journal 4Unranked 12
YearRankTypeTitle / Venue / Authors
2025 conf
SIGSOFT FSE Companion
Shahid Hussain, Nasreen Azad, Wen-Li Wang, Saif Ur Rehman Khan, Muhammad Abdul Basit Ur Rahim, Naseem Ibrahim
2023 conf
QRS Companion
Muhammad Azeem, Saif Ur Rehman Khan, Naseem Ibrahim, Abdullah Yousafzai, Wen-Li Wang, Asif Kareem
2023 A conf
EASE
Syed Muhammad Faaiz, Saif Ur Rehman Khan, Shahid Hussain, Wen-Li Wang, Naseem Ibrahim
2023 conf
XP Workshops
Shahid Hussain, Yuba Neupane, Wen-Li Wang, Naseem Ibrahim, Saif Ur Rehman Khan, Asif Kareem
2022 A conf
EASE
Shahid Hussain, Naseem Ibrahim
2017 J jnl
Int. J. Big Data Intell.
Naseem Ibrahim
2017 conf
ICISA
Naseem Ibrahim, Ismail I. K. Al Ani
2016 J jnl
EAI Endorsed Trans. e Learn.
Naseem Ibrahim
2015 conf
SmartCity
Naseem Ibrahim
2015 conf
SmartCity
Naseem Ibrahim
2015 conf
SmartCity
Naseem Ibrahim
2014 J jnl
EAI Endorsed Trans. Context aware Syst. Appl.
Naseem Ibrahim, Vangular Alagar, Mubarak Mohammad
2014 conf
HotSoS
Naseem Ibrahim
2013 J jnl
Hum. centric Comput. Inf. Sci.
Naseem Ibrahim, Mubarak Mohammad, Vangalur S. Alagar
2012 conf
SOCA
Naseem Ibrahim
2011 C conf
APSCC
Naseem Ibrahim, Mubarak Mohammad, Vangalur S. Alagar
2011 conf
IEEE SCC
Naseem Ibrahim, Mubarak Mohammad, Vangalur S. Alagar
2011 conf
ICEBE
Naseem Ibrahim, Vangalur S. Alagar, Mubarak Mohammad
2011 conf
WWV
Naseem Ibrahim, Vangalur S. Alagar, Mubarak Mohammad
docker-build.sh
← Index docker-build.sh bash
#!/bin/bash

set -e

echo "Building REDB Docker image for linux/amd64 platform..."

# Function to tag the most recent <none> image
tag_unnamed_image() {
    local tag_name=$1
    local expected_size=$2
    
    # Get the most recent <none> image
    local image_id=$(docker images --filter "dangling=true" --format "{{.ID}}" | head -1)
    
    if [ -z "$image_id" ]; then
        echo "ERROR: No unnamed image found. Build may have failed."
        return 1
    fi
    
    local actual_size=$(docker images --format "table {{.ID}}\t{{.Size}}" | grep $image_id | awk '{print $2}')
    echo "Found image $image_id with size: $actual_size (expected: $expected_size)"
    
    # Tag the image
    echo "Tagging as $tag_name..."
    docker tag $image_id $tag_name
    
    return 0
}

# Build single unified image
echo ""
echo "Building REDB unified image - Supports both feature extraction and decompilation..."
echo "NOTE: If build hangs at 'exporting to image', press Ctrl+C - the image will still be created!"
echo ""

docker build --platform linux/amd64 -f Dockerfile -t redb:latest . || echo "Build interrupted (this is expected due to Docker Desktop bug)"

# Tag the image if it was built as unnamed
if docker images --filter "dangling=true" --format "{{.ID}}" | head -1 | grep -q "."; then
    tag_unnamed_image "redb:latest" "500MB"
fi

echo ""
echo "Docker build completed!"
echo ""
echo "Available images:"
docker images | grep redb

echo ""
echo "Image size:"
echo "REDB unified image: $(docker images redb:latest --format "{{.Size}}")"

echo ""
echo "Usage:"
echo "  Feature extraction: docker run redb:latest python3 start.py --nomad-job"
echo "  Decompilation:      docker run redb:latest python3 start.py --nomad-job --decompile"
echo "  Custom modules:     docker run redb:latest python3 start.py --nomad-job --modules BasicPropertiesExtractor,PEFeaturesExtractor"