我收到 Heroku 警告,说我的 slug 太大了:
-----> Compressing...
Done: 304.9M
-----> Launching...
! Warning: Your slug size exceeds our soft limit (304 MB) which may affect boot time.
我怎样才能减少我的蛞蝓大小?这是一个 .NET Core 2.1.401 和 Angular 6 应用程序,所以我使用以下构建包:
- dotnetcore-buildpack;
- heroku-nodejs
- heroku-buildpack-apt
运行heroku run "du . -h --max-depth=3 --threshold=1M"
产生以下结果:
2.5M ./App/obj
524M ./App/ClientApp/node_modules
16M ./App/ClientApp/dist
9.4M ./App/ClientApp/src
549M ./App/ClientApp
2.5M ./App/bin/Release
3.3M ./App/bin
556M ./App
16M ./heroku_output/ClientApp/dist
16M ./heroku_output/ClientApp
130M ./heroku_output
189M ./.heroku/dotnet/sdk
140M ./.heroku/dotnet/shared
329M ./.heroku/dotnet
27M ./.heroku/node/lib
3.0M ./.heroku/node/include
34M ./.heroku/node/bin
63M ./.heroku/node
391M ./.heroku
11M ./.apt/usr/lib
3.3M ./.apt/usr/include
15M ./.apt/usr
15M ./.apt
1.1G .
散装在node_modules/
(524M)、./heroku/dotnet/
(329M) 和./heroku_output
(130M) 中。
我不认为我可以使用.slugignore
文件,因为node_modules
构建过程需要该文件夹,所以我尝试在应用程序中使用此条目node_modules/
后删除该文件夹,但它并没有减少 slug 的大小。dotnet publish
.csproj
<Target Name="CleanupNodeModules" AfterTargets="Publish">
<Exec WorkingDirectory="$(SpaRoot)" Command="rm -rf node_modules" Condition=" '$(OS)' != 'Windows_NT' " ConsoleToMSBuild="true" />
</Target>
有任何想法吗?