Search

"/app/.next/standalone": not found

Created time
2025/02/11 06:58
Last edited time
2025/02/11 07:17
Status
Done
tag

들어가기에 앞서

하단의 참고한 자료를 바탕으로 개인의 생각을 정리한 글이므로 오류가 있을 수 있습니다.
오류에 대한 피드백은 언제든지 환영합니다. 부디 댓글로 알려주시길 바랍니다. 감사합니다.

dockerfile 빌드시 아래와 같은 문제가 발생

=> ERROR [runner 7/8] COPY --from=builder --chown=nextjs:nodejs /app/.next/standalone ./ 0.0s

[runner 7/8] COPY --from=builder --chown=nextjs:nodejs /app/.next/standalone ./:

Dockerfile:37

35 | RUN chown nextjs:nodejs .next 36 |
37 | >>> COPY --from=builder --chown=nextjs:nodejs /app/.next/standalone ./ 38 | COPY --from=builder --chown=nextjs:nodejs /app/.next/static ./.next/static
39
ERROR: failed to solve: failed to compute cache key: failed to calculate checksum of ref 519bc356-f395-48ad-a762-69f82ff09b75::s0g88evsjbv3j12kn7tyc68qu: "/app/.next/standalone": not found
해당 문제는 next.config.ts 파일에 output: 'standalone', 옵션을 추가함으로써 해결 가능하다.

standalone

nextjs 공식 문서에서는 프로덕션 배포에 필요한 필수적인 코드만 추출해내는 폴더라고 정의한다. 위와 같이 옵션을 설정하면 .next/standalone에 폴더가 생성되고, 이 폴더는 node_modules를 설치하지 않고도 단독으로 배포할 수 있게 된다.

참고