aboutsummaryrefslogtreecommitdiffstats
path: root/scripts/obs/lib/docker.py
blob: a5dbcd95c936a6ed67963ebd7688378976f45a80 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
# SPDX-License-Identifier: GPL-2.0-or-later
# Copyright 2022 sysmocom - s.f.m.c. GmbH <info@sysmocom.de>
import os
import shutil
import subprocess
import sys
import lib
import lib.config


def build_image():
    print(f"docker: building image {lib.config.docker_image_name}")
    lib.run_cmd(["docker", "build",
                 "--build-arg", f"UID={os.getuid()}",
                 "-t", lib.config.docker_image_name,
                 f"{lib.config.path_top}/data"])


def get_oscrc():
    ret = os.path.expanduser("~/.oscrc")
    if "OSCRC" in os.environ:
        ret = os.environ["OSCRC"]

    if os.path.exists(ret):
        return os.path.realpath(ret)

    print("ERROR: couldn't find ~/.oscrc. Put it there or set OSCRC.")
    exit(1)


def run_in_docker_and_exit(script_path, args, add_oscrc=False):
    if "INSIDE_DOCKER" in os.environ:
        return

    if not shutil.which("docker"):
        print("ERROR: docker is not installed")
        exit(1)

    oscrc = None
    if add_oscrc:
        oscrc = get_oscrc()

    # Build the docker image. Unless it is up-to-date, this will take a few
    # minutes or so, therefore print the output.
    lib.set_cmds_verbose(True)
    build_image()
    lib.set_cmds_verbose(args.verbose)

    cmd = ["docker", "run",
           "-e", "INSIDE_DOCKER=1",
           "-e", "PYTHONUNBUFFERED=1",
           "--rm", "-v", f"{lib.config.path_top}:/obs"]

    if oscrc:
        cmd += ["-v", f"{oscrc}:/home/user/.oscrc"]

    script_path = f"/obs/{os.path.basename(script_path)}"
    cmd += [lib.config.docker_image_name, script_path] + sys.argv[1:]

    print(f"docker: running: {os.path.basename(script_path)} inside docker")
    ret = subprocess.run(cmd)
    exit(ret.returncode)