fix: patch Dockerfile for purpose of docker run (#2177)

This commit is contained in:
Charles Packer
2024-12-09 15:03:11 -08:00
committed by GitHub
parent 3d5c321d91
commit 6c4f8d5d56
4 changed files with 107 additions and 53 deletions

View File

@@ -51,6 +51,7 @@ def server(
port: Annotated[Optional[int], typer.Option(help="Port to run the server on")] = None,
host: Annotated[Optional[str], typer.Option(help="Host to run the server on (default to localhost)")] = None,
debug: Annotated[bool, typer.Option(help="Turn debugging output on")] = False,
ade: Annotated[bool, typer.Option(help="Allows remote access")] = False, # NOTE: deprecated
secure: Annotated[bool, typer.Option(help="Adds simple security access")] = False,
):
"""Launch a Letta server process"""