Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .github/workflows/build-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,9 @@ jobs:
- context: graphql-lsp
tag: graphql-language-service-cli

- context: helmls
tag: helm-language-server

- context: html
tag: html-language-server

Expand Down
5 changes: 5 additions & 0 deletions docker-compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,11 @@ services:
build:
context: servers/graphql-lsp

helmls:
image: lspcontainers/helm-language-server
build:
context: servers/helmls

html:
image: lspcontainers/html-language-server
build:
Expand Down
7 changes: 7 additions & 0 deletions servers/helmls/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
FROM debian

ADD https://github.com/mrjosh/helm-ls/releases/download/v0.0.17/helm_ls_linux_amd64 /helmls

RUN chmod +x /helmls

CMD [ "/helmls", "serve" ]