mirror of
https://github.com/Aider-AI/aider.git
synced 2025-05-20 12:24:59 +00:00
Added libportaudio2 to the docker container
This commit is contained in:
parent
49b9034629
commit
b2b78a98ee
2 changed files with 3 additions and 6 deletions
|
@ -1,7 +1,7 @@
|
||||||
FROM python:3.10-slim
|
FROM python:3.10-slim
|
||||||
COPY . /aider
|
COPY . /aider
|
||||||
RUN apt-get update && \
|
RUN apt-get update && \
|
||||||
apt-get install --no-install-recommends -y git universal-ctags && \
|
apt-get install --no-install-recommends -y git universal-ctags libportaudio2 && \
|
||||||
rm -rf /var/lib/apt/lists/* && \
|
rm -rf /var/lib/apt/lists/* && \
|
||||||
pip install --no-cache-dir /aider && \
|
pip install --no-cache-dir /aider && \
|
||||||
rm -rf /aider
|
rm -rf /aider
|
||||||
|
|
|
@ -28,8 +28,5 @@ git config user.name "Your Name"
|
||||||
|
|
||||||
## Limitations
|
## Limitations
|
||||||
|
|
||||||
- When you use the in-chat `/run` command, it will
|
- When you use the in-chat `/run` command, it will be running shell commands *inside the docker container*. So those commands won't be running in your local environment, which may make it tricky to `/run` tests, etc for your project.
|
||||||
be running shell commands *inside the docker container*.
|
- The `/voice` command won't work unless you can figure out how to give the docker container access to your host audio device. The container has libportaudio2 installed, so it should work if you can do that.
|
||||||
So those commands won't be running in your local environment,
|
|
||||||
which may make it tricky to `/run` tests, etc for your project.
|
|
||||||
- The `/voice` command won't work.
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue