diff --git a/lsp/Dockerfile b/lsp/Dockerfile index 7729404ce8..e8b15b81b3 100644 --- a/lsp/Dockerfile +++ b/lsp/Dockerfile @@ -38,7 +38,6 @@ RUN pip3 install tornado python-lsp-jsonrpc ruff-lsp COPY --from=denoland/deno:2.1.2 --chmod=755 /usr/bin/deno /usr/bin/deno -# Set up Python environment ENV PIPENV_VENV_IN_PROJECT=1 RUN mkdir -p /pyls WORKDIR /pyls @@ -47,14 +46,11 @@ RUN cat Pipfile RUN pip install Cython RUN pipenv install -# Copy launcher script COPY pyls_launcher.py . -# Set up temporary directory for monaco RUN mkdir -p /tmp/monaco && chmod -R 777 /tmp/monaco RUN cd /tmp/monaco && npm install --save-dev windmill-client -# Ensure all users have access to the installed packages and configurations RUN chmod -R a+rX /usr/local && \ chmod -R a+rX /pyls