Added more docker servers as reference

Former-commit-id: aa9fbe9082
This commit is contained in:
2025-11-24 19:12:16 -06:00
parent c2d85e711b
commit 3b7d18d61d
28 changed files with 486 additions and 0 deletions

View File

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