Cao Chen

17 papers B 4Journal 8Unranked 4
YearRankTypeTitle / Venue / Authors
2026 J jnl
IEEE Trans. Aerosp. Electron. Syst.
Cao Chen, Hao Zhu, Henry Leung
2026 J jnl
IEEE Access
Lan Li, Cao Chen, Zilin Gao, Min You
2025 J jnl
CoRR
Simon Püttmann, Jonathan Jair Sànchez Contreras, Lennart Kowitz, Peter Lampen, Saumya Gupta, Davide Panzeri, Nina Hagemann, Qiaojie Xiong, Dirk M. Hermann, Cao Chen, Jianxu Chen
2024 B conf
TrustCom
Cao Chen, Fenghua Li, Yunchuan Guo, Zifu Li, Wenlong Kou
2024 conf
ICC
Cao Chen, Shilin Xiao, Fen Zhou, Massimo Tornatore
2023 J jnl
IEEE/ACM Trans. Netw.
Cao Chen, Fen Zhou, Massimo Tornatore, Shilin Xiao
2023 J jnl
CoRR
Cao Chen, Shilin Xiao, Fen Zhou, Massimo Tornatore
2022 B conf
TrustCom
Fenghua Li, Cao Chen, Yunchuan Guo, Liang Fang, Chao Guo, Zifu Li
2021 J jnl
IEEE Trans. Netw. Serv. Manag.
Yuanhao Liu, Fen Zhou, Cao Chen, Zuqing Zhu, Tao Shang, Juan-Manuel Torres-Moreno
2021 J jnl
CoRR
Cao Chen, Fen Zhou, Massimo Tornatore, Shilin Xiao
2021
Cao Chen
2021 B conf
LCN
Cao Chen, Fen Zhou, Shilin Xiao
2021 J jnl
CoRR
Cao Chen, Fen Zhou, Yuanhao Liu, Shilin Xiao
2020 B conf
GLOBECOM
Yuanhao Liu, Fen Zhou, Cao Chen, Zuqing Zhu, Tao Shang, Juan-Manuel Torres-Moreno
2019 conf
HPCC/SmartCity/DSS
Cao Chen, Fen Zhou, Shilin Xiao
2017 conf
ICTON
Cao Chen, Min Ju, Shilin Xiao, Fen Zhou, Xueling Yang
2015 conf
WCSP
Yinan Hou, Yuankai Xue, Cao Chen, Shilin Xiao
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"