]> git.eshelyaron.com Git - emacs.git/commitdiff
* test/infra/Dockerfile.emba (emacs-eglot): Adapt software selection.
authorMichael Albinus <michael.albinus@gmx.de>
Mon, 27 Mar 2023 16:32:49 +0000 (18:32 +0200)
committerMichael Albinus <michael.albinus@gmx.de>
Mon, 27 Mar 2023 16:32:49 +0000 (18:32 +0200)
test/infra/Dockerfile.emba

index 163fc582e6fddc0633d6779881fc1614b641acce..0fa642d983bc9598942f6ab6c867226aca7f1fa0 100644 (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