mirror of
https://github.com/Aider-AI/aider.git
synced 2025-05-30 17:24: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 }}
|
dockerhub_password: ${{ secrets.DOCKERHUB_PASSWORD }}
|
||||||
if: ${{ env.dockerhub_username }} && ${{ env.dockerhub_password }}
|
if: ${{ env.dockerhub_username }} && ${{ env.dockerhub_password }}
|
||||||
|
|
||||||
- name: Build Docker image
|
- name: Build Docker standard image
|
||||||
uses: docker/build-push-action@v5
|
uses: docker/build-push-action@v5
|
||||||
with:
|
with:
|
||||||
context: .
|
context: .
|
||||||
file: ./docker/Dockerfile
|
file: ./docker/Dockerfile
|
||||||
platforms: linux/amd64,linux/arm64
|
platforms: linux/amd64,linux/arm64
|
||||||
push: false
|
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