Updated Readmes; renamed servers to reference servers

This commit is contained in:
2025-11-27 15:01:13 -06:00
parent 4e2f1b9e93
commit 87cc1efdce
31 changed files with 22 additions and 69 deletions

View File

@@ -0,0 +1,12 @@
FROM alpine:3.22.1
ARG VERSION=1.18.0
LABEL version="${VERSION}"
RUN apk add --no-cache \
nodejs=22.16.0-r2 \
npm=11.3.0-r0 \
&& npm install -g \
yaml-language-server@${VERSION}
CMD [ "yaml-language-server", "--stdio" ]