mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
new Dockerfile keyword: 'push'
This commit is contained in:
parent
038ca5ee39
commit
40ccf1d300
1 changed files with 12 additions and 1 deletions
|
@ -65,7 +65,13 @@ def insert(base, src, dst, author=None):
|
|||
stdin = file(src)
|
||||
stdin.seek(0)
|
||||
return run_and_commit(base, "cat > {0}; chmod +x {0}".format(dst), stdin=stdin, author=author)
|
||||
|
||||
|
||||
def push(base, dst, author=None):
|
||||
print "PUSH to {} in {}".format(dst, base)
|
||||
if dst == "":
|
||||
raise Exception("Missing argument to push")
|
||||
tar = subprocess.Popen(["tar", "-c", "."], stdout=subprocess.PIPE).stdout
|
||||
return run_and_commit(base, "mkdir -p '{0}' && tar -C '{0}' -x".format(dst), stdin=tar, author=author)
|
||||
|
||||
def main():
|
||||
base=""
|
||||
|
@ -95,6 +101,11 @@ def main():
|
|||
steps.append(result)
|
||||
base = result
|
||||
print "===> " + base
|
||||
elif op == "push":
|
||||
result = push(base, param.strip(), author=maintainer)
|
||||
steps.append(result)
|
||||
base=result
|
||||
print "===> " + base
|
||||
else:
|
||||
print "Skipping uknown op " + op
|
||||
except:
|
||||
|
|
Loading…
Add table
Reference in a new issue