Removes unnecessary build-essential package from build dependencies.
Reasons
PostgreSQL requires libllvm14 package for JIT compilation.
The newly added build-essential in build dependencies causes libllvm14 to be incorrectly purged during the cleanup phase.
As build-essential does not seem to be used during the build phase, we can remove it.
Fixes #129
Checklist
Please check through the following before opening your PR. Thank you!
[x] I have made changes to the Dockerfile.template file only
[x] I have not made any manual changes to automatically generated files
Description
Removes unnecessary
build-essential
package from build dependencies.Reasons
PostgreSQL requires
libllvm14
package for JIT compilation. The newly addedbuild-essential
in build dependencies causeslibllvm14
to be incorrectly purged during the cleanup phase. Asbuild-essential
does not seem to be used during the build phase, we can remove it.Fixes #129
Checklist
Please check through the following before opening your PR. Thank you!
Dockerfile.template
file only