mirror of
https://github.com/Aider-AI/aider.git
synced 2025-05-28 08:14:59 +00:00
feat: Add Docker full image build to CI workflow
This commit is contained in:
parent
c234df0ff1
commit
5d80e11e5b
1 changed files with 11 additions and 1 deletions
12
.github/workflows/docker-build-test.yml
vendored
12
.github/workflows/docker-build-test.yml
vendored
|
@ -39,10 +39,20 @@ jobs:
|
|||
dockerhub_password: ${{ secrets.DOCKERHUB_PASSWORD }}
|
||||
if: ${{ env.dockerhub_username }} && ${{ env.dockerhub_password }}
|
||||
|
||||
- name: Build Docker image
|
||||
- name: Build Docker standard image
|
||||
uses: docker/build-push-action@v5
|
||||
with:
|
||||
context: .
|
||||
file: ./docker/Dockerfile
|
||||
platforms: linux/amd64,linux/arm64
|
||||
push: false
|
||||
target: aider
|
||||
|
||||
- name: Build Docker full image
|
||||
uses: docker/build-push-action@v5
|
||||
with:
|
||||
context: .
|
||||
file: ./docker/Dockerfile
|
||||
platforms: linux/amd64,linux/arm64
|
||||
push: false
|
||||
target: aider-full
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue