File size: 267 Bytes
a89d35f | 1 2 3 4 5 6 7 8 | 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
|