Add deployment scripting #444

Merged
telackey merged 9 commits from dboreham/deployment-scripting into main 2023-07-24 02:54:06 +00:00
2 changed files with 2 additions and 2 deletions
Showing only changes of commit 43d9861508 - Show all commits

View File

@ -15,7 +15,7 @@
import os
from abc import ABC, abstractmethod
from .deploy import get_stack_status
from app.deploy import get_stack_status
from decouple import config

View File

@ -67,7 +67,7 @@ def command(ctx, include, exclude, force_rebuild, extra_build_args):
print('Dev root directory doesn\'t exist, creating')
# See: https://stackoverflow.com/a/20885799/1701505
from . import data
from app import data
with importlib.resources.open_text(data, "container-image-list.txt") as container_list_file:
all_containers = container_list_file.read().splitlines()