]> git.eshelyaron.com Git - emacs.git/commitdiff
* test/infra/Dockerfile.emba (emacs-eglot): Install wget.
authorMichael Albinus <michael.albinus@gmx.de>
Thu, 23 Mar 2023 09:21:11 +0000 (10:21 +0100)
committerMichael Albinus <michael.albinus@gmx.de>
Thu, 23 Mar 2023 09:21:11 +0000 (10:21 +0100)
test/infra/Dockerfile.emba

index adca95eb209540f577f76da7c836498219e2ce11..5b14384ceb3b931cd062794e4b76efbb5093f8d2 100644 (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)"