From 7064a17716a4e337f6ce86e5070be31761efc2bb Mon Sep 17 00:00:00 2001 From: Kunthawat Greethong Date: Wed, 29 Apr 2026 18:28:04 +0700 Subject: [PATCH] Use numeric UID 1001 instead of username for chown Co-Authored-By: Claude Opus 4.6 --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index a11418b..ecba2a6 100644 --- a/Dockerfile +++ b/Dockerfile @@ -31,7 +31,7 @@ COPY --from=builder /app/node_modules ./node_modules COPY --from=builder /app/dist ./dist COPY --from=builder /app/data.db ./data.db -RUN chown astro:astro /app/data.db +RUN chown 1001:1001 /app/data.db EXPOSE 4321