mirror of
https://github.com/freedomofpress/dangerzone.git
synced 2025-04-28 18:02:38 +02:00
61 lines
1.3 KiB
Python
61 lines
1.3 KiB
Python
import gzip
|
|
import os
|
|
import subprocess
|
|
|
|
|
|
def main():
|
|
print("Building container image")
|
|
subprocess.run(
|
|
[
|
|
"docker",
|
|
"build",
|
|
"container",
|
|
"--platform",
|
|
"linux/amd64",
|
|
"--tag",
|
|
"dangerzone.rocks/dangerzone",
|
|
]
|
|
)
|
|
|
|
print("Saving container image")
|
|
subprocess.run(
|
|
[
|
|
"docker",
|
|
"save",
|
|
"dangerzone.rocks/dangerzone",
|
|
"-o",
|
|
"share/container.tar",
|
|
]
|
|
)
|
|
|
|
print("Compressing container image")
|
|
chunk_size = 1024
|
|
with open("share/container.tar", "rb") as f:
|
|
with gzip.open("share/container.tar.gz", "wb") as gzip_f:
|
|
while True:
|
|
chunk = f.read(chunk_size)
|
|
if len(chunk) > 0:
|
|
gzip_f.write(chunk)
|
|
else:
|
|
break
|
|
|
|
os.remove("share/container.tar")
|
|
|
|
print("Looking up the image id")
|
|
image_id = subprocess.check_output(
|
|
[
|
|
"docker",
|
|
"image",
|
|
"list",
|
|
"--format",
|
|
"{{.ID}}",
|
|
"dangerzone.rocks/dangerzone",
|
|
],
|
|
text=True,
|
|
)
|
|
with open("share/image-id.txt", "w") as f:
|
|
f.write(image_id)
|
|
|
|
|
|
if __name__ == "__main__":
|
|
main()
|