This repository provides a Dockerfile
to build and run the disasm
C project in a containerized environment.
# Step 1: Clone the repository and navigate to the desired directory
git clone https://github.com/null1024-ws/disasm.git
cd disasm/disasm_image
# Step 2: Build the Docker image
docker build -t disasm-project .
# Step 3: Run the Docker container
docker run -it --name disasm-container disasm-project /bin/bash
# Step 4: Run the disasm tool inside the container
cd /disasm
./disasm /path/to/test/file.o
# Optional: Use digraphs/istats for enhanced disassembly
./disasm -P digraphs/istats /path/to/test/file.o
# Step 5: Exit the container
exit
Please feel free to visit this link.