We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5769821 commit b69edcfCopy full SHA for b69edcf
.dockerignore
@@ -7,3 +7,4 @@ OLD*
7
.env
8
.venv
9
.aider.*
10
+build
.github/workflows/release.yml
@@ -1,6 +1,7 @@
1
name: Release
2
3
on:
4
+ workflow_dispatch:
5
push:
6
tags:
- 'v*'
docker/Dockerfile
FROM python:3.10-slim
RUN apt-get update && apt-get install -y git && rm -rf /var/lib/apt/lists/*
-RUN pip install --upgrade pip && pip install aider-chat
+COPY . /aider
+RUN pip install --upgrade pip && pip install /aider
WORKDIR /app
ENTRYPOINT ["aider"]
0 commit comments