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

13 lines
219 B
Docker
Raw Normal View History

2025-11-24 19:12:16 -06:00
FROM alpine:3.22.1
ARG VERSION=1.1.377
LABEL version="${VERSION}"
RUN apk add --no-cache \
nodejs=22.16.0-r2 \
npm=11.3.0-r0 \
&& npm install -g \
pyright@${VERSION}
CMD [ "pyright-langserver", "--stdio" ]