mirror of
https://github.com/Aider-AI/aider.git
synced 2025-05-19 20:05:00 +00:00
prep docker build to run in github action
This commit is contained in:
parent
5769821a35
commit
b69edcfcba
3 changed files with 4 additions and 1 deletions
|
@ -7,3 +7,4 @@ OLD*
|
||||||
.env
|
.env
|
||||||
.venv
|
.venv
|
||||||
.aider.*
|
.aider.*
|
||||||
|
build
|
||||||
|
|
1
.github/workflows/release.yml
vendored
1
.github/workflows/release.yml
vendored
|
@ -1,6 +1,7 @@
|
||||||
name: Release
|
name: Release
|
||||||
|
|
||||||
on:
|
on:
|
||||||
|
workflow_dispatch:
|
||||||
push:
|
push:
|
||||||
tags:
|
tags:
|
||||||
- 'v*'
|
- 'v*'
|
||||||
|
|
|
@ -1,6 +1,7 @@
|
||||||
FROM python:3.10-slim
|
FROM python:3.10-slim
|
||||||
RUN apt-get update && apt-get install -y git && rm -rf /var/lib/apt/lists/*
|
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
|
WORKDIR /app
|
||||||
ENTRYPOINT ["aider"]
|
ENTRYPOINT ["aider"]
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue