From 2f4b89c77fa2a174f6f761c948fc662566cff8a9 Mon Sep 17 00:00:00 2001 From: Jan Kiszka Date: Sat, 2 Jan 2021 15:53:06 +0100 Subject: [PATCH] Dockerfile: Fold two related ENV settings together One layer less. Signed-off-by: Jan Kiszka --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 6fbb43c..6d1236d 100644 --- a/Dockerfile +++ b/Dockerfile @@ -23,8 +23,8 @@ RUN apt-get install --no-install-recommends -y \ RUN wget -nv -O /usr/bin/oe-git-proxy "http://git.yoctoproject.org/cgit/cgit.cgi/poky/plain/scripts/oe-git-proxy" && \ chmod +x /usr/bin/oe-git-proxy -ENV GIT_PROXY_COMMAND="oe-git-proxy" -ENV NO_PROXY="*" +ENV GIT_PROXY_COMMAND="oe-git-proxy" \ + NO_PROXY="*" COPY . /kas RUN pip3 --proxy=$https_proxy install /kas