Skip to content

Instantly share code, notes, and snippets.

View Martlark's full-sized avatar

Andrew Rowe Martlark

View GitHub Profile
@michaelconnor00
michaelconnor00 / put_archive.py
Last active October 22, 2022 21:42 — forked from zbyte64/sample.py
Docker Python put_archive example
import tarfile
import time
import json
from io import BytesIO
import docker
src_code = """
if __name__ == "__main__":
print('Hello World, From Alpine!!!!!!!!!')
"""