fix docker build

This commit is contained in:
Nick Sweeting 2024-10-03 18:24:27 -07:00
parent 0619750ffa
commit c5da3c1f22
No known key found for this signature in database
2 changed files with 25 additions and 9 deletions

View file

@ -1,19 +1,19 @@
#!/usr/bin/env python3
# _ _ _ ____
# / \ _ __ ___| |__ (_)_ _____| __ ) _____ __
# / _ \ | '__/ __| '_ \| \ \ / / _ \ _ \ / _ \ \/ /
# / ___ \| | | (__| | | | |\ V / __/ |_) | (_) > <
# /_/ \_\_| \___|_| |_|_| \_/ \___|____/ \___/_/\_\
"""This is the main entry point for the ArchiveBox CLI."""
__package__ = 'archivebox'
import archivebox # noqa
import archivebox # noqa # import archivebox/__init__.py to apply monkey patches, load vendored libs, etc.
import sys
from .cli import main
ASCII_LOGO_MINI = r"""
_ _ _ ____
/ \ _ __ ___| |__ (_)_ _____| __ ) _____ __
/ _ \ | '__/ __| '_ \| \ \ / / _ \ _ \ / _ \ \/ /
/ ___ \| | | (__| | | | |\ V / __/ |_) | (_) > <
/_/ \_\_| \___|_| |_|_| \_/ \___|____/ \___/_/\_\
"""
if __name__ == '__main__':
main(args=sys.argv[1:], stdin=sys.stdin)