From eb933f37859a40ba5953419788feb8e51daa20d1 Mon Sep 17 00:00:00 2001 From: Edvaldo Szymonek Date: Thu, 6 Aug 2026 09:45:39 -0300 Subject: [PATCH] =?UTF-8?q?corrige=20permiss=C3=A3o=20das=20fontes=20no=20?= =?UTF-8?q?docker?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 9ab8d41..5e8dd89 100644 --- a/Dockerfile +++ b/Dockerfile @@ -71,7 +71,8 @@ COPY --from=build --chown=hcf_api:hcf_api /usr/src/app/dist ./dist COPY --chown=hcf_api:hcf_api ./public ./public USER root -COPY --from=build --chmod=664 /usr/src/app/dist/reports/assets/fonts/*.ttf /usr/share/fonts/truetype/ +COPY --from=build /usr/src/app/dist/reports/assets/fonts/*.ttf /usr/share/fonts/truetype/ +RUN chmod 664 /usr/share/fonts/truetype/*.ttf USER hcf_api EXPOSE $PORT