New packaging relying only pyproject.toml

This commit is contained in:
grossmj
2023-08-10 22:44:37 +10:00
parent 17f71f970e
commit 1cb433c5bc
13 changed files with 38 additions and 82 deletions

View File

@ -523,7 +523,7 @@ class DockerVM(BaseNode):
async def update(self):
"""
Destroy an recreate the container with the new settings
Destroy and recreate the container with the new settings
"""
# We need to save the console and state and restore it
@ -544,6 +544,9 @@ class DockerVM(BaseNode):
Starts this Docker container.
"""
# make sure busybox is installed
self.manager.install_busybox()
try:
state = await self._get_container_state()
except DockerHttp404Error: