docs: Fix description of container image generation

Since a6b18abc8a, 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 <jan.kiszka@siemens.com>
This commit is contained in:
Jan Kiszka 2023-01-17 18:13:25 +01:00
parent 5b15a4d52a
commit 34cf4c9c8f

View File

@ -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 <image_name> .
$ docker build -t <kas_image_name> .
For the Yocto/OE build image, use::
$ docker build --target kas-isar -t <kas-isar_image_name> .
When you need a proxy to access the internet, add::
--build-arg http_proxy=<http_proxy> --build-arg https_proxy=<https_proxy> --build-arg ftp_proxy=<ftp_proxy> --build-arg no_proxy=<no_proxy>
--build-arg http_proxy=<http_proxy> --build-arg https_proxy=<https_proxy>
--build-arg ftp_proxy=<ftp_proxy> --build-arg no_proxy=<no_proxy>
to the call.