We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
--
1 parent 718a9fd commit 0b8094fCopy full SHA for 0b8094f
2 files changed
userdocker/__init__.py
@@ -7,4 +7,4 @@
7
https://github.com/joernhees/userdocker
8
"""
9
10
-__version__ = '1.0.1-dev'
+__version__ = '1.0.1'
userdocker/subcommands/run.py
@@ -170,7 +170,9 @@ def prepare_commandline_run(args):
170
if args.entrypoint:
171
cmd += ["--entrypoint", args.entrypoint]
172
173
- cmd.append("--")
+ # additional injection protection, deactivated for now due to nvidia-docker
174
+ # unability to handle this
175
+ # cmd.append("--")
176
177
img = args.image
178
if ":" not in img and "@" not in img:
0 commit comments