Skip to content

Commit

Permalink
chore: eliminate src directory in non-root example (#1268)
Browse files Browse the repository at this point in the history
  • Loading branch information
MikeMcC399 authored Dec 30, 2024
1 parent c8e7465 commit 21864f0
Show file tree
Hide file tree
Showing 4 changed files with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions examples/included-as-non-root/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,11 +25,11 @@ $ docker run -it --rm --entrypoint id -u node cypress/included
uid=1000(node) gid=1000(node) groups=1000(node)
```

To run the example Cypress project in the [src](./src/) subdirectory with `node` as user, change directory to `examples/included-as-non-root` and execute the following `docker run` command:
To run the example Cypress project with `node` as user, change directory to `examples/included-as-non-root` and execute the following `docker run` command:

```shell
cd examples/included-as-non-root
docker run -it --rm -v ./src:/test -w /test -u node cypress/included
docker run --rm -v .:/test -w /test -u node cypress/included
```

You can expect this command to run successfully.
File renamed without changes.

0 comments on commit 21864f0

Please sign in to comment.