diff --git a/README.md b/README.md index 135c650..e9ad76c 100644 --- a/README.md +++ b/README.md @@ -63,10 +63,12 @@ docker run -ti -v $HOME/Work/zephyrproject:/workdir \ #### Building Developer Docker Image -The developer docker image can be built using the following command: +The developer docker image can be built using the following commands: ``` -docker build -f Dockerfile.devel --build-arg UID=$(id -u) --build-arg GID=$(id -g) -t zephyr-build:v . +docker build -f Dockerfile.base --build-arg UID=$(id -u) --build-arg GID=$(id -g) -t zephyr-ci-base:v . +docker build -f Dockerfile.ci --build-arg BASE_IMAGE=zephyr-ci-base:v -t zephyr-ci:v . +docker build -f Dockerfile.devel --build-arg BASE_IMAGE=zephyr-ci:v -t zephyr-build:v . ``` It can be used for building Zephyr samples and tests by mounting the Zephyr workspace into it: