Okay so very simple I wanna create my own buildpack so that I can run a faster install, faster builds, better caching and smaller docker containers
Also currently it seems that we’re limited to certain versions of what is supported by the buildpacks?
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.
Enter your email to get $200 in credit for your first 60 days with DigitalOcean.
New accounts only. By submitting your email you agree to our Privacy Policy.
Hi there,
What you could do is, rather than using the native buildpacks, you could use a Dockerfile and build your custom Docker images instead so that you can install custom dependencies and have full control over the build process:
An alternative option would be to use DockerHub and deploy your pre-build images directly, rather than using the App Platform for the build process:
Hope that this helps!
Best,
Bobby