We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
ビルド時に毎回apt-getやpnpmがダウンロードするのは時間がかかるし、相手にも迷惑がかかる(要出典)ので
RUN --mount=type=cache
cache-from
cache-to
The text was updated successfully, but these errors were encountered:
キャッシュが効き過ぎるとapt-getは古いパッケージになってしまうかもしれないけど、そんなに弊害は無いはず
Sorry, something went wrong.
aptでの依存パッケージのセキュリティアップデートが来ないのはちょっと微妙
こちらですが、完成したDockerイメージのビルドサイズが大きくなるデメリットよりもパッケージのキャッシュを保持しておくことによるビルド時間短縮のメリットを取った、という理解で良いでしょうか? Dockleのルール DKL-DI-0005 と相反する状態になっているため、#9568 の実装にあたりこのルールをignoreするか判断する材料にしたいという意図です。
DKL-DI-0005
Successfully merging a pull request may close this issue.
Summary
ビルド時に毎回apt-getやpnpmがダウンロードするのは時間がかかるし、相手にも迷惑がかかる(要出典)ので
RUN --mount=type=cache
を使うcache-from
とcache-to
を使うThe text was updated successfully, but these errors were encountered: