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

10 lines
145 B
Docker
Raw Normal View History

ARG VERSION=1.88.0
FROM rust:${VERSION}-alpine3.22
LABEL version="${VERSION}"
RUN rustup component add rust-analyzer
CMD [ "rust-analyzer" ]