We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents ea490a7 + 12f2c00 commit 7270745Copy full SHA for 7270745
manof/image.py
@@ -80,6 +80,10 @@ def run(self):
80
if self.interactive:
81
command += '--interactive '
82
83
+ # allocate a pseudo-tty
84
+ if self.tty:
85
+ command += '--tty '
86
+
87
# add rm if needed
88
if self.rm_on_run:
89
command += '--rm '
@@ -441,6 +445,10 @@ def detach(self):
441
445
def interactive(self):
442
446
return False
443
447
448
+ @property
449
+ def tty(self):
450
+ return False
451
444
452
@property
453
def memory(self):
454
"""
requirements.txt
@@ -3,4 +3,5 @@ simplejson==3.8.2
3
Twisted==19.2.1
4
pytz==2016.7
5
colorama==0.3.3
6
-pygments==2.2.0
+pygments==2.2.0
7
+ruamel.yaml==0.16.0
0 commit comments