Dockerfile 7.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159
  1. # Build frontend
  2. FROM node:22-bookworm-slim AS frontend-builder
  3. WORKDIR /app/frontend
  4. # Copy package files first for better caching
  5. COPY frontend/package*.json ./
  6. # Use cache mount for npm
  7. RUN --mount=type=cache,target=/root/.npm \
  8. npm ci
  9. COPY frontend/ ./
  10. RUN npm run build
  11. # Production image
  12. FROM python:3.13-slim-trixie
  13. WORKDIR /app
  14. # Install system dependencies
  15. ENV DEBIAN_FRONTEND=noninteractive
  16. RUN apt-get update && apt-get install -y --no-install-recommends \
  17. curl \
  18. ffmpeg \
  19. gnupg \
  20. gosu \
  21. iproute2 \
  22. libcap2-bin \
  23. openssh-client \
  24. ca-certificates \
  25. && rm -rf /var/lib/apt/lists/*
  26. # Install the Tailscale CLI only (no tailscaled — the daemon runs on the host).
  27. # Bambuddy calls `tailscale status` / `tailscale cert` via the host's socket,
  28. # which the user mounts in via docker-compose when they want to enable the
  29. # Tailscale integration for virtual printers. Without the socket mount, the
  30. # binary is harmless — the code logs a hint and falls back to self-signed.
  31. RUN curl -fsSL https://pkgs.tailscale.com/stable/debian/trixie.noarmor.gpg \
  32. -o /usr/share/keyrings/tailscale-archive-keyring.gpg \
  33. && curl -fsSL https://pkgs.tailscale.com/stable/debian/trixie.tailscale-keyring.list \
  34. -o /etc/apt/sources.list.d/tailscale.list \
  35. && apt-get update && apt-get install -y --no-install-recommends tailscale \
  36. && rm -rf /var/lib/apt/lists/*
  37. # Allow binding to privileged ports (e.g. 990/FTPS) as non-root user.
  38. # File capabilities are more reliable than Docker cap_add with user: directive,
  39. # which depends on ambient capability support in the container runtime.
  40. RUN setcap cap_net_bind_service=+ep "$(readlink -f /usr/local/bin/python3)"
  41. # Install Python dependencies with cache mount.
  42. # pip is upgraded to >=26.1 first to close CVE-2026-6357 — the python:3.13-slim
  43. # base image ships pip 26.0.1, which runs its self-update check after installing
  44. # wheels (so a hostile wheel could hijack stdlib imports during install).
  45. COPY requirements.txt ./
  46. RUN --mount=type=cache,target=/root/.cache/pip \
  47. pip install --root-user-action=ignore --upgrade 'pip>=26.1.2' \
  48. && pip install --root-user-action=ignore -r requirements.txt
  49. # Copy backend
  50. COPY backend/ ./backend/
  51. # Capture the current git branch at build time. `.git/HEAD` is the only
  52. # .git metadata the build context lets through (see .dockerignore); it
  53. # contains `ref: refs/heads/<branch>`, which the SpoolBuddy remote-update
  54. # flow reads at runtime via detect_current_branch() in spoolbuddy_ssh.py.
  55. # Without this, the production image has no git metadata at all and would
  56. # always pull `main` on the remote device regardless of which branch
  57. # Bambuddy itself was built from.
  58. COPY .git/HEAD ./.git/HEAD
  59. # Copy built frontend from builder stage
  60. COPY --from=frontend-builder /app/static ./static
  61. # Create data directories. Ownership is normalised at startup by the
  62. # entrypoint (chowns to PUID:PGID and drops privileges via gosu before
  63. # exec'ing the app), so we don't need a chmod 777 hack here — that was
  64. # the workaround for the previous compose `user: "1000:1000"` model and
  65. # only worked when the volume's perms happened to survive (named volume
  66. # first-create case; bind-mount-source case bit users in #1211 / #668).
  67. #
  68. # The sentinel file is needed so a freshly-created Docker named volume
  69. # isn't "empty" from Docker's POV. On empty volumes Docker resyncs the
  70. # directory metadata (incl. ownership) from the image on every mount,
  71. # which would mean our entrypoint chown gets reverted on every restart
  72. # and re-fired on every start (slow on multi-GB archive dirs). With a
  73. # sentinel inside the volume on first mount, Docker considers the
  74. # volume populated and stops resyncing, so the chown is genuinely
  75. # one-shot.
  76. RUN mkdir -p /app/data /app/logs && \
  77. : >/app/data/.bambuddy && \
  78. : >/app/logs/.bambuddy
  79. # Entrypoint script: handles PUID/PGID + ownership normalisation +
  80. # privilege drop. See deploy/docker-entrypoint.sh for the full rationale.
  81. COPY deploy/docker-entrypoint.sh /usr/local/bin/docker-entrypoint.sh
  82. RUN chmod +x /usr/local/bin/docker-entrypoint.sh
  83. # Environment variables
  84. ENV PYTHONUNBUFFERED=1
  85. ENV DATA_DIR=/app/data
  86. ENV LOG_DIR=/app/logs
  87. ENV PORT=8000
  88. # Provide a local username + home for tools that call getpass.getuser() /
  89. # os.path.expanduser() under arbitrary PUIDs. With `user: "1001:1001"` the
  90. # stock python:3.13-slim image has no /etc/passwd entry for that UID, so
  91. # pwd.getpwuid() raises and breaks libraries that do host-level user lookups
  92. # (notably asyncssh, which uses the local username for ~/.ssh/config host
  93. # matching during the SpoolBuddy remote-update flow). Setting LOGNAME/USER
  94. # makes getpass.getuser() resolve via env vars instead of the passwd db;
  95. # HOME=/app gives a writable home that is guaranteed to exist.
  96. ENV HOME=/app
  97. ENV USER=bambuddy
  98. ENV LOGNAME=bambuddy
  99. # Matplotlib (imported lazily by the STL thumbnail generator) tries to create
  100. # its font/style cache at $HOME/.config/matplotlib on first import. /app is
  101. # root-owned and not writable by the PUID:PGID the entrypoint drops to,
  102. # which trips an EPERM warning in everyone's logs and forces matplotlib
  103. # to fall back to a per-restart temp dir (paying the font-scan cost on
  104. # every container restart). Pinning the cache dir to /tmp/matplotlib
  105. # silences the warning and keeps the cache alive for the container's
  106. # lifetime. /tmp is writable by any uid, so this works regardless of PUID.
  107. ENV MPLCONFIGDIR=/tmp/matplotlib
  108. EXPOSE 322
  109. EXPOSE 990
  110. EXPOSE 3000
  111. EXPOSE 3002
  112. EXPOSE 6000
  113. EXPOSE 8000
  114. EXPOSE 8883
  115. EXPOSE 50000-50100
  116. # Health check (uses PORT env var via shell)
  117. HEALTHCHECK --interval=30s --timeout=10s --start-period=10s --retries=3 \
  118. CMD python -c "import urllib.request, os; urllib.request.urlopen(f'http://localhost:{os.environ.get(\"PORT\", \"8000\")}/health')" || exit 1
  119. # Run the application
  120. # Use standard asyncio loop (uvloop has permission issues in some Docker environments)
  121. # Port is configurable via PORT (default 8000); bind address via HOST (default
  122. # 0.0.0.0). Set HOST=127.0.0.1 to bind loopback only, e.g. when a reverse proxy
  123. # on the same host fronts the app.
  124. #
  125. # `exec` is load-bearing, not style. Without it the shell stays as PID 1 and
  126. # uvicorn runs as its child; dash does not forward signals, so `docker stop`
  127. # SIGTERMs the shell and uvicorn never hears about it. Every stop then ran to
  128. # the end of the grace period and died on SIGKILL (exit 137) — no WAL
  129. # checkpoint, no MQTT disconnect, no virtual-printer teardown, on every restart
  130. # and every image update. With `exec`, uvicorn *is* PID 1 and gets the signal.
  131. #
  132. # --timeout-graceful-shutdown caps the wait on in-flight requests. Uvicorn's
  133. # default is to wait forever, and an MJPEG camera stream is a response that
  134. # never completes, so a single open camera tile would otherwise pin the process
  135. # past Docker's 10s grace and back into SIGKILL. On timeout uvicorn cancels the
  136. # request tasks; the camera generators already unwind cleanly on CancelledError.
  137. ENV UVICORN_TIMEOUT_GRACEFUL_SHUTDOWN=5
  138. ENTRYPOINT ["/usr/local/bin/docker-entrypoint.sh"]
  139. CMD ["sh", "-c", "exec uvicorn backend.app.main:app --host ${HOST:-0.0.0.0} --port ${PORT:-8000} --loop asyncio --timeout-graceful-shutdown ${UVICORN_TIMEOUT_GRACEFUL_SHUTDOWN}"]