AWS-Lambda

 view release on metacpan or  search on metacpan

examples/hello/Makefile  view on Meta::CPAN

build: hello.zip
hello.zip: handler.pl cpanfile
	docker run --rm -v $(PWD):/var/task shogo82148/p5-aws-lambda:build-5.32.al2 \
		cpanm --notest -L extlocal --installdeps .
	zip -r hello.zip . -x '*.zip'

test:
	docker run --rm -v $(PWD):/var/task shogo82148/p5-aws-lambda:5.32.al2 \
		handler.handle '{}'

clean:
	rm -f hello.zip
	rm -rf local
	rm -rf extlocal

.PHONY: build test clean



( run in 0.580 second using v1.01-cache-2.11-cpan-39bf76dae61 )