Fixes the build, probably

This commit is contained in:
Trenton H 2025-03-10 11:28:52 -07:00
parent 3c95928051
commit 6ae1811477
2 changed files with 1 additions and 20 deletions

View File

@ -79,7 +79,7 @@ RUN set -eux \
&& rm -rf /var/lib/apt/lists/*
# Copy our service defs and filesystem
COPY --link ./docker/rootfs /
COPY ./docker/rootfs /
# Stage: main-app
# Purpose: The final image

View File

@ -1,19 +0,0 @@
if __name__ == "__main__":
import os
from granian import Granian
from granian.constants import Interfaces
Granian(
"paperless.asgi:application",
interface=Interfaces.ASGINL,
address=os.getenv("GRANIAN_HOST") or os.getenv("PAPERLESS_BIND_ADDR", "::"),
port=int(os.getenv("GRANIAN_PORT") or os.getenv("PAPERLESS_PORT") or 8000),
workers=int(
os.getenv("GRANIAN_WORKERS")
or os.getenv("PAPERLESS_WEBSERVER_WORKERS")
or 1,
),
websockets=True,
url_path_prefix=os.getenv("PAPERLESS_FORCE_SCRIPT_NAME"),
).serve()