Files
Newton-LSP/Docker/servers/rust_analyzer/Dockerfile

10 lines
145 B
Docker
Raw Normal View History

2025-11-24 19:12:16 -06:00
ARG VERSION=1.88.0
FROM rust:${VERSION}-alpine3.22
LABEL version="${VERSION}"
RUN rustup component add rust-analyzer
CMD [ "rust-analyzer" ]