mirror of
https://github.com/skerkour/black-hat-rust
synced 2026-06-08 17:29:34 +00:00
11 lines
174 B
Docker
11 lines
174 B
Docker
FROM rust:latest
|
|
|
|
RUN apt update && apt upgrade -y
|
|
RUN apt install -y g++ libc6-dev make
|
|
|
|
RUN rustup default nightly
|
|
|
|
WORKDIR /app
|
|
|
|
CMD ["make", "hello_world_x86_64_docker"]
|