Skip to content

Commit

Permalink
Rename Dockerfile.user to Dockerfile.devel
Browse files Browse the repository at this point in the history
This commit renames the `Dockerfile.user` file, which builds the
"Developer Image," to `Dockerfile.devel` in order to remove any
ambiguity.

Signed-off-by: Stephanos Ioannidis <root@stephanos.io>
  • Loading branch information
stephanosio committed Feb 7, 2023
1 parent b348a4c commit b1ffcd2
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ jobs:
uses: docker/build-push-action@v3
with:
context: .
file: Dockerfile.user
file: Dockerfile.devel
platforms: ${{ matrix.variant.platform }}
push: true
tags: ${{ steps.meta_developer.outputs.tags }}
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ docker run -ti -v $HOME/Work/zephyrproject:/workdir \
The developer docker image can be built using the following command:

```
docker build -f Dockerfile.user --build-arg UID=$(id -u) --build-arg GID=$(id -g) -t zephyr-build:v<tag> .
docker build -f Dockerfile.devel --build-arg UID=$(id -u) --build-arg GID=$(id -g) -t zephyr-build:v<tag> .
```

It can be used for building Zephyr samples and tests by mounting the Zephyr workspace into it:
Expand Down

0 comments on commit b1ffcd2

Please sign in to comment.