Install git in runtime image

This commit is contained in:
elipitc
2026-06-03 14:05:37 +08:00
parent 253ea923cd
commit f4d7b9a5b1
+1
View File
@@ -7,6 +7,7 @@ WORKDIR /app
# 安装系统依赖(包括 openssl 用于生成自签名证书) # 安装系统依赖(包括 openssl 用于生成自签名证书)
RUN apt-get update && apt-get install -y \ RUN apt-get update && apt-get install -y \
curl \ curl \
git \
openssl \ openssl \
&& rm -rf /var/lib/apt/lists/* && rm -rf /var/lib/apt/lists/*