From bd681766b419b7f611a01f7366175f3a66821c6f Mon Sep 17 00:00:00 2001 From: hamster1963 <1410514192@qq.com> Date: Sun, 22 Sep 2024 17:39:56 +0800 Subject: [PATCH] fix: env file path --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 6a9716c30..336b82459 100644 --- a/Dockerfile +++ b/Dockerfile @@ -41,7 +41,7 @@ COPY --from=builder /app/public ./public COPY --from=builder --chown=nextjs:nodejs /app/.next/standalone ./ COPY --from=builder --chown=nextjs:nodejs /app/.next/static ./.next/static -COPY --from=builder --chown=nextjs:nodejs /.env.example ./.env +COPY --from=builder --chown=nextjs:nodejs /app/.env.example ./.env USER nextjs