diff options
author | Alexandre Flament <alex@al-f.net> | 2021-04-24 08:53:12 +0200 |
---|---|---|
committer | Alexandre Flament <alex@al-f.net> | 2021-04-28 14:40:00 +0200 |
commit | 20580bcbd458fa18c13bb9c1a32466ee5af48f97 (patch) | |
tree | 6667317d1953b92685bd094d0c23f791cd31d68d /.github/workflows | |
parent | fe3831db1aa73ebda6eb12fa3a321002c176ccc1 (diff) | |
download | searxng-20580bcbd458fa18c13bb9c1a32466ee5af48f97.tar.gz searxng-20580bcbd458fa18c13bb9c1a32466ee5af48f97.zip |
[docker] multiarch support: linux/amd64,linux/arm64,linux/arm/v7
make docker.buildx : build and push multiarch build.
(it can't be only build)
use buildx with the --cache-from and --cache-to options to cache the layers
(only the last built is cached)
Diffstat (limited to '.github/workflows')
-rw-r--r-- | .github/workflows/integration.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/integration.yml b/.github/workflows/integration.yml index 0068c3964..914ce163f 100644 --- a/.github/workflows/integration.yml +++ b/.github/workflows/integration.yml @@ -121,4 +121,4 @@ jobs: password: ${{ secrets.DOCKERHUB_TOKEN }} - name: Build and push if: env.DOCKERHUB_USERNAME != null - run: make -e GIT_URL=$(git remote get-url origin) docker.push + run: make -e GIT_URL=$(git remote get-url origin) docker.buildx |