You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
364 B
22 lines
364 B
FROM debian:bullseye-slim
|
|
|
|
# Update package repositories and install necessary packages
|
|
RUN apt-get update && apt-get install -y \
|
|
python3 \
|
|
clang \
|
|
libc6-dev \
|
|
python3-pip \
|
|
gdb \
|
|
nano \
|
|
vim
|
|
|
|
COPY src /root/src
|
|
|
|
# Install Python packages
|
|
RUN python3 -m pip install \
|
|
capstone \
|
|
pwntools
|
|
|
|
WORKDIR /root
|
|
|
|
ENTRYPOINT ["/bin/bash"] |