#!/usr/bin/env python
#     Copyright 2025, Kay Hayen, mailto:kay.hayen@gmail.com find license text at end of file


""" Launcher for Linux container build tool.

"""

import os
import sys

# Unchanged, running from checkout, use the parent directory, the nuitka
# package ought to be there.
sys.path.insert(0, os.path.normpath(os.path.join(os.path.dirname(__file__), "..")))

# isort:start

from nuitka.tools.commercial.container_build.__main__ import main

main()

#     Part of Nuitka commercial.
#
#     Commercial grade license of Nuitka. No distribution to outside of the
#     buyer is allowed, the file must be kept secret. Usage is limited to
#     Nuitka. Changed versions, or versions of changes sent to the
#     copyright holder are automatically licensed to him under the Apache
#     License, Version 2.0 as used in proper Nuitka, to allow opening code
#     up later.
#
#     Unless required by applicable law or agreed to in writing, software
#     distributed under the License is distributed on an "AS IS" BASIS,
#     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
