mirror of
https://codeberg.org/smukx/Rust-for-Malware-Development
synced 2026-06-06 20:22:59 +00:00
28e7fac1d3
Rust-for-Malware-Development is an collection of proof of concepts with techniques and advanced evasion methods
15 lines
349 B
Docker
15 lines
349 B
Docker
# Please Read docker.md file for more information.
|
|
# By @5mukx
|
|
|
|
FROM rust:latest
|
|
|
|
RUN apt update ; apt upgrade -y
|
|
RUN apt install -y g++-mingw-w64-x86-64
|
|
|
|
RUN rustup target add x86_64-pc-windows-gnu
|
|
RUN rustup toolchain install stable-x86_64-pc-windows-gnu
|
|
|
|
WORKDIR /app
|
|
|
|
CMD ["cargo", "build", "--target", "x86_64-pc-windows-gnu", "--release"]
|