From fdb75385cb738119df7aa58756edbdc756ca221d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jos=C3=A9=20Henrique?= Date: Sun, 23 Nov 2025 21:00:52 -0300 Subject: [PATCH] fix Dockerfile for arm64 --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 38aadae..5562372 100644 --- a/Dockerfile +++ b/Dockerfile @@ -11,7 +11,7 @@ COPY ./utils/minify.sh /tmp/minify.sh RUN chmod +x /tmp/minify.sh # Minify all JavaScript files in-place -RUN find /usr/share/nginx/html -name "*.js" -type f -exec /tmp/minify.sh {} \; && \ +RUN find /usr/share/nginx/html -name "*.js" -type f -exec sh /tmp/minify.sh {} \; && \ rm -r /tmp && \ rm -r /usr/share/nginx/html/.git && \ rm -r /usr/share/nginx/html/utils