Skip to content

Commit

Permalink
avoid to use empty entrypoint
Browse files Browse the repository at this point in the history
  • Loading branch information
jasl committed Nov 11, 2023
1 parent 78040db commit ecfbade
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion jetson_containers/container.py
Original file line number Diff line number Diff line change
Expand Up @@ -295,7 +295,7 @@ def test_container(name, package, simulate=False):
cmd += f"--volume {package['path']}:/test" + _NEWLINE_
cmd += f"--volume {os.path.join(_PACKAGE_ROOT, 'data')}:/data" + _NEWLINE_
cmd += f"--workdir /test" + _NEWLINE_
cmd += f"--entrypoint ''" + _NEWLINE_
cmd += f"--entrypoint /usr/bin/env" + _NEWLINE_
cmd += name + _NEWLINE_

cmd += "/bin/bash -c '"
Expand Down

0 comments on commit ecfbade

Please sign in to comment.