企业🤖AI智能体构建引擎,智能编排和调试,一键部署,支持私有化部署方案 广告
[TOC] ## 使用 alpine:latest alpine是官方给出的最小的镜像,用于运行环境。 遇到的问题 ``` apk update && \ apk add --no-cache ca-certificates bash grep ``` fetch http://nl.alpinelinux.org/alpine/v3.5/main/x86_64/APKINDEX.tar.gz error 解决办法加上参数 ` --network=host` ``` docker build --network=host -t . ``` 或者使用代理 ``` sudo docker build --build-arg http_proxy=http://proxyserver:8080 --build-arg https_proxy=https://proxyserver:8080 --file=dockerfile.txt --tag=myrep/image1 --rm=true . ```