electrs dockerfile
All checks were successful
Build Docker Image / build (push) Successful in 2m40s

This commit is contained in:
2025-12-02 22:35:26 -06:00
parent 3db532de6f
commit cf8ccf1137
4 changed files with 19 additions and 4 deletions

View File

@@ -28,7 +28,9 @@ class Autopkg:
# Logging Setup
setup_log()
logging.info("Running autopkg (c) 2025 phantom <phantom@shadeouts.net> https://shadeouts.net/")
logging.info(
"Running autopkg (c) 2025 phantom <phantom@shadeouts.net> https://shadeouts.net/"
)
# Environment Setup
target = os.getenv("APKG_TARGET")
@@ -40,7 +42,7 @@ class Autopkg:
case "test" | "debug":
logging.warning("Running autopkg in testing mode!")
self.datafile = os.getenv("APKG_RUNTIME_DIR") + "/test/data.ini"
self.datafile = os.getenv("APKG_RUNTIME_DIR") + "/dev/data.ini"
if os.path.exists(self.datafile): os.remove(self.datafile)
case _: