From 34cf4c9c8f1313257940c20e4551a11b6a77a8c9 Mon Sep 17 00:00:00 2001 From: Jan Kiszka Date: Tue, 17 Jan 2023 18:13:25 +0100 Subject: [PATCH] docs: Fix description of container image generation Since a6b18abc8a8f, we only have a single Dockerfile and a --target instead. We actually also need to touch the unmodified proxy line, wrapping it around, so that doc8 remains happy. Signed-off-by: Jan Kiszka --- docs/devguide.rst | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/docs/devguide.rst b/docs/devguide.rst index 4e5e8c5..d254cbe 100644 --- a/docs/devguide.rst +++ b/docs/devguide.rst @@ -16,13 +16,18 @@ able to call it from anywhere. Docker image build ------------------ -Just run:: +For the Yocto/OE build image, just run:: - $ docker build -t . + $ docker build -t . + +For the Yocto/OE build image, use:: + + $ docker build --target kas-isar -t . When you need a proxy to access the internet, add:: - --build-arg http_proxy= --build-arg https_proxy= --build-arg ftp_proxy= --build-arg no_proxy= + --build-arg http_proxy= --build-arg https_proxy= + --build-arg ftp_proxy= --build-arg no_proxy= to the call.