瀏覽代碼

fix base images

Signed-off-by: Rui-Gan <1171530954@qq.com>
Rui-Gan 2 年之前
父節點
當前提交
5fa317fc02
共有 3 個文件被更改,包括 3 次插入3 次删除
  1. 1 1
      .github/dockerfile/Dockerfile.alpine
  2. 1 1
      .github/dockerfile/Dockerfile.centos
  3. 1 1
      .github/dockerfile/Dockerfile.debian

+ 1 - 1
.github/dockerfile/Dockerfile.alpine

@@ -12,7 +12,7 @@
 # See the License for the specific language governing permissions and
 # limitations under the License.
 
-
+ARG GO_VERSION=${{ matrix.golang }}
 FROM golang:$GO_VERSION-alpine AS builder
 
 RUN apk add gcc make git libc-dev zip curl jq bash binutils-gold pkgconfig zeromq-dev

+ 1 - 1
.github/dockerfile/Dockerfile.centos

@@ -16,7 +16,7 @@ FROM centos:7
 
 RUN yum install -y make wget git which rpm-build gcc
 
-
+ARG GO_VERSION=${{ matrix.golang }}
 
 RUN case $(arch) in \
         x86_64) \

+ 1 - 1
.github/dockerfile/Dockerfile.debian

@@ -14,7 +14,7 @@
 
 FROM debian:stretch
 
-
+ARG GO_VERSION=${{ matrix.golang }}
 
 RUN apt update \
     && apt install -y make wget git curl procps zip libucl-dev zlib1g-dev pkg-config libczmq-dev build-essential debhelper jq zip