We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 48b588a commit 20e698eCopy full SHA for 20e698e
1 file changed
Dockerfile
@@ -1,4 +1,5 @@
1
# 构建阶段:处理插件和元数据
2
+# FROM python:3.11-alpine AS builder
3
FROM higress-registry.cn-hangzhou.cr.aliyuncs.com/higress/python:3.11-alpine AS builder
4
5
# 安装系统依赖
@@ -26,7 +27,8 @@ COPY pull_plugins.py plugins.properties ./
26
27
RUN python3 pull_plugins.py
28
29
# 运行阶段:最终镜像
-FROM docker.io/nginx:alpine
30
+# FROM nginx:alpine
31
+FROM higress-registry.cn-hangzhou.cr.aliyuncs.com/higress/nginx:alpine
32
33
# 从构建阶段复制生成的文件
34
COPY --from=builder /workspace/plugins /usr/share/nginx/html/plugins
0 commit comments