You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The current entrypoint breaks if the workdir is changed.
Example:
```
docker run -w /mnt/foo -v $PWD/foo:/mnt/foo -it --rm firefoxtesteng/webpagetest-api
docker: Error response from daemon: oci runtime error: container_linux.go:265: starting container process caused "exec: \"bin/webpagetest\": stat bin/webpagetest: no such file or directory".
```
The following works as expected:
```
docker run --entrypoint /usr/src/app/bin/webpagetest -w /mnt/foo -v $PWD/foo:/mnt/foo -it --rm firefoxtesteng/webpagetest-api
```
0 commit comments