From 8a8c1608953fb81ce9f519e05a6122234cd6819c Mon Sep 17 00:00:00 2001 From: Adrian Altner Date: Wed, 22 Apr 2026 02:57:40 +0200 Subject: [PATCH] Add debug output for WEBMENTION_TOKEN file details in Containerfile --- Containerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Containerfile b/Containerfile index 1f814b7..2e1b833 100644 --- a/Containerfile +++ b/Containerfile @@ -12,6 +12,7 @@ RUN npm ci COPY . . RUN printf '%s' "${WEBMENTION_TOKEN}" > /app/.webmention-token +RUN echo "TOKEN FILE:" && ls -la /app/.webmention-token && wc -c /app/.webmention-token RUN npm run build