i create app platform for my server using golang
i using this for resize image and change extension : https://dev.to/franciscomendes10866/image-compression-with-golang-k2p
but they need to install libvips
so, i try to build my server in app platform and then i getting error
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.
Hi there,
In your case as your app requires build based dependencies, I would recommend bundling the app into a Dockerfile, including your dependencies, and then deploying the app using the Docker image.
Let me know how it goes!
Best,
Bobby