From 4b9ec9c080cbd8885a7d448c936620043941ae09 Mon Sep 17 00:00:00 2001 From: ELLIOTTCABLE Date: Sat, 22 Apr 2023 00:55:34 -0700 Subject: [PATCH] lsp: Expose 3001 in the Docker image (#1450) --- lsp/Dockerfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lsp/Dockerfile b/lsp/Dockerfile index 6eb62bf6c2..5efacb1a1a 100644 --- a/lsp/Dockerfile +++ b/lsp/Dockerfile @@ -20,5 +20,7 @@ RUN pipenv install COPY pyls_launcher.py . +EXPOSE 3001 + CMD ["python3" ,"pyls_launcher.py"]