mirror of
https://github.com/Aider-AI/aider.git
synced 2025-05-28 00:05:01 +00:00
7 lines
267 B
Docker
7 lines
267 B
Docker
FROM python:3.8-slim
|
|
RUN apt-get update && apt-get install -y less git
|
|
COPY requirements.txt /aider/requirements.txt
|
|
RUN pip install lox typer pandas matplotlib imgcat aider-chat
|
|
RUN pip install --upgrade pip && pip install -r /aider/requirements.txt
|
|
WORKDIR /aider
|
|
|