From ea8e31346cb12ff780b956947c620fe40eff7d5f Mon Sep 17 00:00:00 2001 From: 9seconds Date: Wed, 3 Mar 2021 17:30:47 +0300 Subject: [PATCH 1/2] Build for arm 32 platforms --- .github/workflows/ci.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 99e11a2..4bd3b39 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -125,7 +125,7 @@ jobs: with: pull: true context: . - platforms: linux/amd64,linux/arm64,linux/386 + platforms: linux/amd64,linux/arm64,linux/386,linux/arm/v7,linux/arm/v6 push: ${{ github.event_name != 'pull_request' }} tags: ${{ steps.docker_meta.outputs.tags }} labels: ${{ steps.docker_meta.outputs.labels }} From df0994dad38365146b5256278e4d5a220433707f Mon Sep 17 00:00:00 2001 From: 9seconds Date: Wed, 3 Mar 2021 17:43:38 +0300 Subject: [PATCH 2/2] Update dockerfile to golang 1.16 --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 751cb1b..506f222 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,7 +1,7 @@ ############################################################################### # BUILD STAGE -FROM golang:1.15-alpine AS build +FROM golang:1.16-alpine AS build RUN set -x \ && apk --no-cache --update add \