From f4bc686142d864548de96e6b4ee69730636bd96b Mon Sep 17 00:00:00 2001 From: Fred Boniface Date: Sat, 10 Jan 2026 21:31:00 +0000 Subject: [PATCH] Remove 'RUN's from dockerfile due to using from scratch image --- dockerfile | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/dockerfile b/dockerfile index 065e819..6cfb851 100644 --- a/dockerfile +++ b/dockerfile @@ -12,7 +12,6 @@ ENV SERVER_HOST=0.0.0.0 ENV SERVER_ROOT=/public ENV SERVER_LOG_LEVEL=info -COPY --from=builder /app/site /public -RUN chmod -R 0444 /public +COPY --from=builder --chown=65432:65432 /app/site /public USER 65432 EXPOSE 8080