https://github.com/tschaefer/openfaas-perl-mojo-template
🐳 OpenFaaS template based on the official Perl Docker image and the web framework Mojolicious.
https://github.com/tschaefer/openfaas-perl-mojo-template
Last synced: about 2 months ago
JSON representation
🐳 OpenFaaS template based on the official Perl Docker image and the web framework Mojolicious.
- Host: GitHub
- URL: https://github.com/tschaefer/openfaas-perl-mojo-template
- Owner: tschaefer
- Created: 2025-03-20T07:25:06.000Z (2 months ago)
- Default Branch: main
- Last Pushed: 2025-03-21T06:19:46.000Z (2 months ago)
- Last Synced: 2025-03-21T07:25:05.841Z (2 months ago)
- Language: Perl
- Homepage:
- Size: 2.93 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# OpenFaaS Perl Template
OpenFaaS template based on the official
[Perl Docker image](https://hub.docker.com/_/perl/) and the
[web framework Mojolicious](https://mojolicious.org/).## Usage
Use `faas-cli` to pull, create, build and deploy your Perl function.```bash
faas-cli template pull https://github.com/tschaefer/openfaas-perl-mojo-template
faas-cli new --lang perl-mojo mojo
faas-cli up -f stack.yml
```To install further CPAN modules set the build argument in the `stack.yml` file.
```diff
functions:
mojo:
lang: perl-mojo
handler: ./mojo
+ build_args:
+ ADDITIONAL_CPAN_PACKAGES: "Readonly URI"
```