You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@apisix.apache.org by sp...@apache.org on 2022/02/11 03:46:05 UTC

[apisix-docker] branch master updated: chore: solve build error (type *big.Int has no field or method FillBy… (#281)

This is an automated email from the ASF dual-hosted git repository.

spacewander pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/apisix-docker.git


The following commit(s) were added to refs/heads/master by this push:
     new 10a8c99  chore: solve build error (type *big.Int has no field or method FillBy… (#281)
10a8c99 is described below

commit 10a8c99d2de7cbf2e5377e725a0185aaa3d9214c
Author: 罗泽轩 <sp...@gmail.com>
AuthorDate: Fri Feb 11 11:45:57 2022 +0800

    chore: solve build error (type *big.Int has no field or method FillBy… (#281)
---
 all-in-one/apisix-dashboard/Dockerfile | 2 +-
 dashboard/Dockerfile.alpine            | 2 +-
 dashboard/Dockerfile.centos            | 2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/all-in-one/apisix-dashboard/Dockerfile b/all-in-one/apisix-dashboard/Dockerfile
index c7a4432..5591704 100644
--- a/all-in-one/apisix-dashboard/Dockerfile
+++ b/all-in-one/apisix-dashboard/Dockerfile
@@ -73,7 +73,7 @@ RUN set -x \
     && tar -xvf /tmp/apisix-dashboard.tar.gz -C /usr/local/apisix-dashboard --strip 1
 
 # Build APISIX Dashboard - 2. build manager-api from source code
-FROM golang:1.14 as api-builder
+FROM golang:1.17 as api-builder
 
 ARG APISIX_DASHBOARD_VERSION
 ARG ENABLE_PROXY
diff --git a/dashboard/Dockerfile.alpine b/dashboard/Dockerfile.alpine
index 2267707..a724cc2 100644
--- a/dashboard/Dockerfile.alpine
+++ b/dashboard/Dockerfile.alpine
@@ -26,7 +26,7 @@ RUN set -x \
     && cd /usr/local/apisix-dashboard && git clean -Xdf \
     && rm -f ./.githash && git log --pretty=format:"%h" -1 > ./.githash
 
-FROM --platform=$BUILDPLATFORM golang:1.14 as api-builder
+FROM --platform=$BUILDPLATFORM golang:1.17 as api-builder
 
 ARG ENABLE_PROXY=false
 
diff --git a/dashboard/Dockerfile.centos b/dashboard/Dockerfile.centos
index d8c19ff..c949980 100644
--- a/dashboard/Dockerfile.centos
+++ b/dashboard/Dockerfile.centos
@@ -26,7 +26,7 @@ RUN set -x \
     && cd /usr/local/apisix-dashboard && git clean -Xdf \
     && rm -f ./.githash && git log --pretty=format:"%h" -1 > ./.githash
 
-FROM --platform=$BUILDPLATFORM golang:1.14 as api-builder
+FROM --platform=$BUILDPLATFORM golang:1.17 as api-builder
 
 ARG ENABLE_PROXY=false