From 003061557857cccdca9e63f704d3ed340246a15e Mon Sep 17 00:00:00 2001 From: Paul Gauthier Date: Sun, 29 Oct 2023 13:10:31 -0700 Subject: [PATCH] removed universal-ctags from docker image --- docker/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker/Dockerfile b/docker/Dockerfile index 6ecbb889a..903291fd7 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -1,7 +1,7 @@ FROM python:3.10-slim COPY . /aider RUN apt-get update && \ - apt-get install --no-install-recommends -y git universal-ctags libportaudio2 && \ + apt-get install --no-install-recommends -y git libportaudio2 && \ rm -rf /var/lib/apt/lists/* && \ pip install --no-cache-dir /aider && \ rm -rf /aider