This uses skopeo to not think about docker daemons. I, however, noticed that the docker image we had would have totally terrible cache hits, so I rewrote it. Fixes: https://git.lix.systems/lix-project/lix/issues/252 Change-Id: I3c5b6c1f3ba0b9dfcac212b2148f390e0cd542b7
20 lines
402 B
Python
20 lines
402 B
Python
from xonsh.main import setup
|
|
setup()
|
|
del setup
|
|
|
|
from . import environment
|
|
from . import create_release
|
|
from . import keys
|
|
from . import version
|
|
from . import cli
|
|
from . import docker
|
|
|
|
def reload():
|
|
import importlib
|
|
importlib.reload(environment)
|
|
importlib.reload(create_release)
|
|
importlib.reload(keys)
|
|
importlib.reload(version)
|
|
importlib.reload(cli)
|
|
importlib.reload(docker)
|