From bd44122f4e856dd2ef2a7515b51543b4ca4cbcd4 Mon Sep 17 00:00:00 2001 From: Chika Date: Mon, 28 Nov 2022 18:55:38 +0300 Subject: [PATCH] Docker: fix apps/web favicon --- apps/web/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/web/Dockerfile b/apps/web/Dockerfile index c642e80..9ca47c7 100644 --- a/apps/web/Dockerfile +++ b/apps/web/Dockerfile @@ -50,12 +50,12 @@ RUN adduser --system --uid 1001 nextjs USER nextjs COPY --from=installer /app/apps/web/next.config.js . -COPY --from=installer /app/apps/web/public ./public COPY --from=installer /app/apps/web/package.json . # Automatically leverage output traces to reduce image size # 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 \ No newline at end of file