* test/infra/Dockerfile.emba (emacs-eglot): Install wget.

This commit is contained in:
Michael Albinus 2023-03-23 10:21:11 +01:00
parent 90c0472ed6
commit 117a29fd18

View file

@ -62,6 +62,11 @@ RUN make bootstrap
FROM emacs-base as emacs-eglot
RUN apt-get update && \
apt-get install -y --no-install-recommends -o=Dpkg::Use-Pty=0 \
wget \
&& rm -rf /var/lib/apt/lists/*
# We install a recent clangd for Eglot tests.
RUN bash -c "$(wget -O - https://apt.llvm.org/llvm.sh)"