I made a simple heroku-buildpack for perl. With using this buildpack you can run any perl application from Procfile. github: https://github.com/kazeburo/heroku-buildpack-perl-procfile Sample and Usage This sample runs a PSGI server and a worker in 1 Dyno (It's free). $ ls cpanfile Procfile server.pl lib/ $ cat cpanfile requires 'HTTP::Tiny','0.043'; requires 'Getopt::Long'; requires 'Proclet'; req