From 3554d956560f58792bcb815577054eb75f77ea9c Mon Sep 17 00:00:00 2001 From: vchikalkin Date: Tue, 10 Jan 2023 20:54:46 +0300 Subject: [PATCH] fix serve static files --- apps/web/Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/apps/web/Dockerfile b/apps/web/Dockerfile index 099a21e..a17c8b8 100644 --- a/apps/web/Dockerfile +++ b/apps/web/Dockerfile @@ -45,5 +45,6 @@ COPY --from=installer /app/apps/web/package.json . # https://nextjs.org/docs/advanced-features/output-file-tracing COPY --from=installer --chown=nextjs:nodejs /app/apps/web/.next/standalone ./ COPY --from=installer --chown=nextjs:nodejs /app/apps/web/.next/static ./apps/web/.next/static +COPY --from=installer --chown=nextjs:nodejs /app/apps/web/public ./apps/web/public CMD node apps/web/server.js