nextjs with 644 permission (1) 썸네일형 리스트형 nextjs deployment with 644 permission 보안팀의 요청으로 nextjs 배포시 모든 파일 권한을 644로 해야했다. 644 로 했더니 run시에 permission deny 에러가 발생했다. 삽질 끝에 적용한 해결방법을 기록함 ! 🎶 dockerfile # dockerfile RUN find . -type f -exec chmod 644 {} \; RUN chmod 744 node_modules/next/dist/bin/next node_modules/next/dist/bin/next 이파일만 read 권한을 부여해주면 된다. 🎶 자세히 ! #package.json "scripts": { ... "start": "next start" }, 내가 진행한 프로젝트의 경우 $ yarn start -> next start를 통해 실행된다. 이때 nex.. 이전 1 다음