prep docker build to run in github action

This commit is contained in:
Paul Gauthier 2023-10-18 08:45:02 -07:00
parent 5769821a35
commit b69edcfcba
3 changed files with 4 additions and 1 deletions

View file

@ -7,3 +7,4 @@ OLD*
.env
.venv
.aider.*
build

View file

@ -1,6 +1,7 @@
name: Release
on:
workflow_dispatch:
push:
tags:
- 'v*'

View file

@ -1,6 +1,7 @@
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"]