feat(docker): Add Docker configuration for clangd-based C/C++ LSP servers

This commit is contained in:
cfngc4594 2025-02-19 12:25:44 +08:00
parent baeafb92dd
commit e2bb58a034
3 changed files with 50 additions and 0 deletions

20
docker/compose.yml Normal file
View File

@ -0,0 +1,20 @@
services:
lsp-c:
image: clangd:latest
build:
context: ./lsp/clangd
dockerfile: Dockerfile
container_name: lsp-c
restart: always
ports:
- "4594:3000"
lsp-cpp:
image: clangd:latest
build:
context: ./lsp/clangd
dockerfile: Dockerfile
container_name: lsp-cpp
restart: always
ports:
- "4595:3000"

View 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"]

View File

@ -0,0 +1,5 @@
langservers:
clangd:
- /usr/bin/clangd
- --log=verbose
- --background-index