Skip to content

Commit b69edcf

Browse files
committed
prep docker build to run in github action
1 parent 5769821 commit b69edcf

File tree

3 files changed

+4
-1
lines changed

3 files changed

+4
-1
lines changed

.dockerignore

+1
Original file line numberDiff line numberDiff line change
@@ -7,3 +7,4 @@ OLD*
77
.env
88
.venv
99
.aider.*
10+
build

.github/workflows/release.yml

+1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
name: Release
22

33
on:
4+
workflow_dispatch:
45
push:
56
tags:
67
- 'v*'

docker/Dockerfile

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
FROM python:3.10-slim
22
RUN apt-get update && apt-get install -y git && rm -rf /var/lib/apt/lists/*
3-
RUN pip install --upgrade pip && pip install aider-chat
3+
COPY . /aider
4+
RUN pip install --upgrade pip && pip install /aider
45
WORKDIR /app
56
ENTRYPOINT ["aider"]
67

0 commit comments

Comments
 (0)