mirror of
https://github.com/Noratrieb/nixos.git
synced 2026-01-14 19:55:08 +01:00
6 lines
215 B
Docker
6 lines
215 B
Docker
FROM debian:12
|
|
|
|
RUN apt-get update && apt-get install -y build-essential clang git curl
|
|
|
|
RUN curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs -o rustup-init.sh
|
|
RUN sh rustup-init.sh -y && rm rustup-init.sh
|