docker-image icon indicating copy to clipboard operation
docker-image copied to clipboard

Docker image suitable for Zephyr development and CI

Results 13 docker-image issues
Sort by recently updated
recently updated
newest added

The Docker image currently builds with LLVM 12: https://github.com/zephyrproject-rtos/docker-image/blob/e4c2d3d93c9f71dd687e375aab4fc42c3d5ca157/Dockerfile#L7 Consider upgrading to the LLVM 14 release.

enhancement

Re-base the Docker image onto the `ubuntu:22.04` image.

enhancement

This will allow people to extend the current base image and use the same arguments. For example., if I do the following: ``` FROM zephyrprojectrtos/ci:latest RUN apt install -y clang-format-$LLVM_VERSION`...

Using this docker-compose.yml file: ``` version: "2" services: zephyr: image: docker.io/zephyrprojectrtos/zephyr-build:latest container_name: zephyr volumes: - /myworkspace:/workdir ports: - "5900:5900" ``` I get the following error starting the container: zephyr |...

bug

Glad to see there's a containerized environment to support building zephyr. I have a more narrowly focused use case that I'd like supported, and am looking for feedback: ## Background:...

enhancement

I'd like to propose several improvements to the Dockerfile in order to make targeted images that are smaller & faster, leading to a better developer experience for maintainers and developers...

enhancement

The IDE primarily used to develop Zephyr based applications seems to be VSCode. It would be great if you could provide the docker image "Developer Image" conform to the VSCode...

enhancement

Can the west completion script be installed in the build image?

enhancement
question

In https://github.com/zephyrproject-rtos/docker-image/blob/fe38bd9eef84fa1596c35e485ef8fbd2a509bc54/Dockerfile.devel#L37 ZEPHYR_BASE is hard coded and prevents the usage of my .west/config file: ``` [zephyr] base = deps/zephyr ``` Without the hard coded ZEPHYR_BASE, `west` will automatically find zephyr.base...

I recently ran into a problem with Debian 12 (bookworm) on a private Docker environment for Zephyr and decided to see how this repo solves it. Short answer: *it doesn't*....