fix(docker): install curl in builder image for init-go

This commit is contained in:
Haitao Pan 2025-12-04 23:25:09 +08:00
parent 1cc683eaee
commit 8bb2d3b3ab
2 changed files with 2 additions and 2 deletions

View File

@ -6,7 +6,7 @@ FROM ${GO_RUNTIME_IMAGE} AS builder
ARG GO_VERSION="1.24.5"
RUN apt-get update \
&& apt-get install -y --no-install-recommends make git ca-certificates \
&& apt-get install -y --no-install-recommends curl make git ca-certificates \
&& rm -rf /var/lib/apt/lists/*
# =======================================================
# 安装 Go SDK默认开启

View File

@ -7,7 +7,7 @@ FROM ${GO_RUNTIME_IMAGE} AS builder
ARG GO_VERSION="1.24.5"
RUN apt-get update \
&& apt-get install -y --no-install-recommends make git ca-certificates \
&& apt-get install -y --no-install-recommends curl make git ca-certificates \
&& rm -rf /var/lib/apt/lists/*
# =======================================================
# 安装 Go SDK默认开启