removed pylsp-mypy due to process leak
Some checks failed
CI / docker (push) Failing after 51m20s

This commit is contained in:
2024-05-26 10:33:04 +08:00
parent 38cc60ee89
commit b336c0da76

View File

@@ -6,6 +6,8 @@ RUN adduser jovyan -u 1000 --system -s /bin/sh -h /home/jovyan
USER jovyan
WORKDIR /home/jovyan
RUN python -m venv venv
RUN venv/bin/pip install solders
RUN venv/bin/pip install solana
RUN venv/bin/pip install numpy
RUN venv/bin/pip install matplotlib
RUN venv/bin/pip install jupyter-core
@@ -15,9 +17,7 @@ RUN venv/bin/pip install notebook
RUN venv/bin/pip install ipywidgets
RUN venv/bin/pip install jupyterlab-lsp
RUN venv/bin/pip install python-lsp-server[yapf,rope,pyflakes]
RUN venv/bin/pip install pylsp-mypy
RUN venv/bin/pip install solders
RUN venv/bin/pip install solana
#RUN venv/bin/pip install pylsp-mypy
ENV PATH="/home/jovyan/venv/bin/:$PATH"
FROM alpine:3.19