Added universal ctags to the docker image

This commit is contained in:
Paul Gauthier 2023-10-18 13:30:19 -07:00
parent 790f7ddee3
commit 49b9034629
4 changed files with 3 additions and 2 deletions

View file

@ -1,7 +1,7 @@
FROM python:3.10-slim
COPY . /aider
RUN apt-get update && \
apt-get install --no-install-recommends -y git && \
apt-get install --no-install-recommends -y git universal-ctags && \
rm -rf /var/lib/apt/lists/* && \
pip install --no-cache-dir /aider && \
rm -rf /aider