gradleでの対処法がすぐ見つからなかったのでメモ。
開発したspring-bootアプリケーションのdockerイメージを作るには、buildBootImage
ジョブを実行すればよいが、vaadinのエラーが発生した。
java.lang.IllegalStateException: Running project in development mode with no access to folder 'E:\develop\sample-app'.
Build project in production mode instead, see https://vaadin.com/docs/v14/flow/production/tutorial-production-mode-basic.html
公式にはmavenの対処法しか載っていなかった。
https://vaadin.com/docs/v14/guide/production/#enabling-production-mode
gradleの場合は、build.gradeに下記を追加。
vaadin {
productionMode = true
}
そして下記gradleジョブを実行すれば良い。
vaadin:build-frontend
コメント