Remove 'RUN's from dockerfile due to using from scratch image

This commit is contained in:
2026-01-10 21:31:00 +00:00
parent ce7ec4fa9a
commit f4bc686142

View File

@@ -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