feat(docker): add Dockerfile and servers.yml for clangd LSP setup
This commit is contained in:
parent
c9ac19694b
commit
c7af4dbcde
25
docker/lsp/clangd/Dockerfile
Normal file
25
docker/lsp/clangd/Dockerfile
Normal file
@ -0,0 +1,25 @@
|
|||||||
|
FROM alpine:latest as builder
|
||||||
|
|
||||||
|
RUN apk add --no-cache git npm
|
||||||
|
|
||||||
|
WORKDIR /app
|
||||||
|
|
||||||
|
RUN git clone https://github.com/wylieconlon/jsonrpc-ws-proxy.git
|
||||||
|
|
||||||
|
WORKDIR /app/jsonrpc-ws-proxy
|
||||||
|
|
||||||
|
COPY servers.yml .
|
||||||
|
|
||||||
|
RUN npm install && npm run prepare
|
||||||
|
|
||||||
|
FROM alpine:latest
|
||||||
|
|
||||||
|
RUN apk add --no-cache build-base clang-extra-tools nodejs
|
||||||
|
|
||||||
|
WORKDIR /app/jsonrpc-ws-proxy
|
||||||
|
|
||||||
|
COPY --from=builder /app/jsonrpc-ws-proxy .
|
||||||
|
|
||||||
|
EXPOSE 3000
|
||||||
|
|
||||||
|
CMD ["node", "dist/server.js", "--port", "3000", "--languageServers", "servers.yml"]
|
5
docker/lsp/clangd/servers.yml
Normal file
5
docker/lsp/clangd/servers.yml
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
langservers:
|
||||||
|
clangd:
|
||||||
|
- /usr/bin/clangd
|
||||||
|
- --log=verbose
|
||||||
|
- --background-index
|
Loading…
Reference in New Issue
Block a user