Is there a way to use your own docker image as a Function? My task is to process a video file using ffmpeg (download from S3, process, upload back, return Success). There can be several such tasks and they must work in parallel. There are times when there are no tasks and I would not like to pay for a powerful virtual machine that sits idle.
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!
Hey @yauhenko,
As of the time being the DigitalOcean Functions do not support custom Dockerimages for functions. The platform is designed to run functions based on supported runtime environments like Node.js, Python, etc.
The best thing to do to get your voice heard regarding this would be to head over to our Product Ideas board and post a new idea, including as much information as possible for what you’d like to see implemented.
For a task that requires processing video files with FFmpeg, DigitalOcean’s App Platform can instead be a suitable choice, especially since it supports deploying custom apps using a Dockerfile.
You can create a Dockerfile that includes FFmpeg, your application code, and any other dependencies. This allows you to define a custom environment tailored specifically for video processing tasks:
https://docs.digitalocean.com/products/app-platform/reference/dockerfile/
Hope that helps!
- Bobby.
Get paid to write technical tutorials and select a tech-focused charity to receive a matching donation.
Full documentation for every DigitalOcean product.
The Wave has everything you need to know about building a business, from raising funding to marketing your product.
Stay up to date by signing up for DigitalOcean’s Infrastructure as a Newsletter.
New accounts only. By submitting your email you agree to our Privacy Policy
Scale up as you grow — whether you're running one virtual machine or ten thousand.
Sign up and get $200 in credit for your first 60 days with DigitalOcean.*
*This promotional offer applies to new accounts only.