From 11b226ae299123ffb356bb5066a7752b9525ef5c Mon Sep 17 00:00:00 2001 From: Alexander Petric Date: Tue, 24 Dec 2024 18:25:53 +0100 Subject: [PATCH] formatting --- lsp/Dockerfile | 4 ---- 1 file changed, 4 deletions(-) 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