* test/infra/Dockerfile.emba (emacs-eglot): Adapt software selection.

This commit is contained in:
Michael Albinus 2023-03-27 18:32:49 +02:00
parent 0bd2bbc0c2
commit afbb9b426c

View file

@ -64,7 +64,7 @@ FROM emacs-base as emacs-eglot
RUN apt-get update && \
apt-get install -y --no-install-recommends -o=Dpkg::Use-Pty=0 \
snapd wget lsb_release add-apt-repository gpg \
snapd wget lsb-release software-properties-common gpg \
&& rm -rf /var/lib/apt/lists/*
# A recent clangd. It must be at least clangd 14, which is in Debian
@ -73,8 +73,8 @@ RUN bash -c "$(wget --no-check-certificate -O - https://apt.llvm.org/llvm.sh)"
# A recent pylsp. Since Debian bookworm there is the package
# python3-pylsp.
RUN snap install core
RUN snap install pylsp
# RUN snap install core
# RUN snap install pylsp
COPY . /checkout
WORKDIR /checkout