mirror of
https://github.com/windmill-labs/windmill.git
synced 2026-08-19 08:01:25 +00:00
6cbc6b421b
* lsp * progress * 1.36.0
23 lines
601 B
Docker
23 lines
601 B
Docker
FROM nikolaik/python-nodejs
|
|
|
|
RUN yarn global add diagnostic-languageserver
|
|
RUN yarn global add pyright
|
|
RUN wget https://golang.org/dl/go1.19.1.linux-amd64.tar.gz && tar -C /usr/local -xzf go1.19.1.linux-amd64.tar.gz
|
|
ENV PATH="${PATH}:/usr/local/go/bin:/root/go/bin"
|
|
ENV GO_PATH=/usr/local/go/bin/go
|
|
ENV GOROOT=/usr/local/go
|
|
RUN go install -v golang.org/x/tools/gopls@latest
|
|
RUN pip3 install black tornado python-lsp-jsonrpc
|
|
COPY --from=denoland/deno:latest /usr/bin/deno /usr/bin/deno
|
|
|
|
COPY Pipfile .
|
|
|
|
RUN cat Pipfile
|
|
|
|
RUN pipenv install
|
|
|
|
COPY pyls_launcher.py .
|
|
|
|
CMD ["python3" ,"pyls_launcher.py"]
|
|
|