Scale up as you grow — whether you're running one virtual machine or ten thousand.

From GPU-powered inference and Kubernetes to managed databases and storage, get everything you need to build, scale, and deploy intelligent applications.

This textbox defaults to using Markdown to format your answer.
You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!
These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.
Accepted Answer
Hi there,
Based on the error message it sounds like that a required library function (pango_context_set_round_glyph_positions) for PDF generation is missing. It’s likely that there’s a version mismatch issue with the pango library installed in your DigitalOcean App environment.
A workaround here could be to build a custom Dockerfile for your application which includes the required dependencies with the correct versions. This approach would provide you with more control over your environment and allow you to manage system-level dependencies where as when using the native App Platform builds you don’t have that control.
You can follow the steps on how to use a Dockerfile together with the App Platform here:
https://docs.digitalocean.com/products/app-platform/reference/dockerfile/
Hope that this helps!
Best,
Bobby