5 lines
150 B
Docker
5 lines
150 B
Docker
FROM rust:1-bookworm
|
|
RUN apt update && apt upgrade -y && apt install fish -y
|
|
RUN rustup component add clippy rustfmt
|
|
|
|
RUN useradd -ms /bin/fish vscode |