build 容器时 使用代理
demo1
使用前 指定 env
使用后 记得 清空, 否则 会影响 使用容器 时的 网络
cat dockerfile
-->
FROM jenkins/jenkins:2.289.2-lts-jdk11
USER root
env http_proxy "http://172.20.1.247:7890"
env https_proxy "http://172.20.1.247:7890"
RUN apt-get update && apt-get install -y apt-transport-https \
ca-certificates curl gnupg2 \
software-properties-common
RUN curl -fsSL https://download.docker.com/linux/debian/gpg | apt-key add -
RUN apt-key fingerprint 0EBFCD88
RUN add-apt-repository \
"deb [arch=amd64] https://download.docker.com/linux/debian \
$(lsb_release -cs) stable"
RUN apt-get update && apt-get install -y docker-ce-cli
env http_proxy ""
env https_proxy ""
USER jenkins
RUN jenkins-plugin-cli --plugins "blueocean:1.24.7 docker-workflow:1.26"
标签:容器,RUN,https,apt,构建,env,docker
From: https://www.cnblogs.com/ltgybyb/p/16861340.html