feat: Add Docker full image build to CI workflow

This commit is contained in:
Paul Gauthier (aider) 2024-09-21 13:59:50 -07:00
parent c234df0ff1
commit 5d80e11e5b

View file

@ -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