mirror of
https://github.com/jupyter/docker-stacks.git
synced 2025-10-07 10:04:03 +00:00
108 lines
3.6 KiB
Python
Executable File
108 lines
3.6 KiB
Python
Executable File
#!/usr/bin/env python3
|
|
# Copyright (c) Jupyter Development Team.
|
|
# Distributed under the terms of the Modified BSD License.
|
|
import argparse
|
|
import datetime
|
|
import logging
|
|
import os
|
|
|
|
from docker.models.containers import Container
|
|
|
|
from .docker_runner import DockerRunner
|
|
from .get_taggers_and_manifests import get_taggers_and_manifests
|
|
from .git_helper import GitHelper
|
|
from .manifests import ManifestHeader, ManifestInterface
|
|
|
|
LOGGER = logging.getLogger(__name__)
|
|
|
|
|
|
BUILD_TIMESTAMP = datetime.datetime.utcnow().isoformat()[:-7] + "Z"
|
|
MARKDOWN_LINE_BREAK = "<br />"
|
|
|
|
|
|
def append_build_history_line(
|
|
short_image_name: str,
|
|
owner: str,
|
|
wiki_path: str,
|
|
all_tags: list[str],
|
|
) -> None:
|
|
LOGGER.info("Appending build history line")
|
|
|
|
date_column = f"`{BUILD_TIMESTAMP}`"
|
|
image_column = MARKDOWN_LINE_BREAK.join(
|
|
f"`{owner}/{short_image_name}:{tag_value}`" for tag_value in all_tags
|
|
)
|
|
commit_hash = GitHelper.commit_hash()
|
|
commit_hash_tag = GitHelper.commit_hash_tag()
|
|
links_column = MARKDOWN_LINE_BREAK.join(
|
|
[
|
|
f"[Git diff](https://github.com/jupyter/docker-stacks/commit/{commit_hash})",
|
|
f"[Dockerfile](https://github.com/jupyter/docker-stacks/blob/{commit_hash}/{short_image_name}/Dockerfile)",
|
|
f"[Build manifest](./{short_image_name}-{commit_hash_tag})",
|
|
]
|
|
)
|
|
build_history_line = "|".join([date_column, image_column, links_column]) + "|"
|
|
|
|
home_wiki_file = os.path.join(wiki_path, "Home.md")
|
|
with open(home_wiki_file) as f:
|
|
file = f.read()
|
|
TABLE_BEGINNING = "|-|-|-|\n"
|
|
file = file.replace(TABLE_BEGINNING, TABLE_BEGINNING + build_history_line + "\n")
|
|
with open(home_wiki_file, "w") as f:
|
|
f.write(file)
|
|
|
|
|
|
def create_manifest_file(
|
|
short_image_name: str,
|
|
owner: str,
|
|
wiki_path: str,
|
|
manifests: list[ManifestInterface],
|
|
container: Container,
|
|
) -> None:
|
|
manifest_names = [manifest.__class__.__name__ for manifest in manifests]
|
|
LOGGER.info(f"Using manifests: {manifest_names}")
|
|
|
|
commit_hash_tag = GitHelper.commit_hash_tag()
|
|
manifest_file = os.path.join(
|
|
wiki_path,
|
|
f"manifests/{short_image_name}-{commit_hash_tag}.md",
|
|
)
|
|
|
|
markdown_pieces = [
|
|
ManifestHeader.create_header(short_image_name, owner, BUILD_TIMESTAMP)
|
|
] + [manifest.markdown_piece(container) for manifest in manifests]
|
|
markdown_content = "\n\n".join(markdown_pieces) + "\n"
|
|
|
|
with open(manifest_file, "w") as f:
|
|
f.write(markdown_content)
|
|
|
|
|
|
def create_manifests(short_image_name: str, owner: str, wiki_path: str) -> None:
|
|
LOGGER.info(f"Creating manifests for image: {short_image_name}")
|
|
taggers, manifests = get_taggers_and_manifests(short_image_name)
|
|
|
|
image = f"{owner}/{short_image_name}:latest"
|
|
|
|
with DockerRunner(image) as container:
|
|
all_tags = [tagger.tag_value(container) for tagger in taggers]
|
|
append_build_history_line(short_image_name, owner, wiki_path, all_tags)
|
|
create_manifest_file(short_image_name, owner, wiki_path, manifests, container)
|
|
|
|
|
|
if __name__ == "__main__":
|
|
logging.basicConfig(level=logging.INFO)
|
|
|
|
arg_parser = argparse.ArgumentParser()
|
|
arg_parser.add_argument(
|
|
"--short-image-name",
|
|
required=True,
|
|
help="Short image name to apply tags for",
|
|
)
|
|
arg_parser.add_argument("--owner", required=True, help="Owner of the image")
|
|
arg_parser.add_argument("--wiki-path", required=True, help="Path to the wiki pages")
|
|
args = arg_parser.parse_args()
|
|
|
|
LOGGER.info(f"Current build timestamp: {BUILD_TIMESTAMP}")
|
|
|
|
create_manifests(args.short_image_name, args.owner, args.wiki_path)
|