Files
windmill/lsp/Dockerfile
Ruben Fiszel 8861e19564 ci: add deno
2022-05-17 22:21:45 +02:00

18 lines
330 B
Docker

FROM nikolaik/python-nodejs
RUN yarn global add diagnostic-languageserver
RUN yarn global add pyright
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"]