This is a docker image for building a ClojureScript project that installs AWS Lambda functions.
442
This is a docker image for building a ClojureScript project that installs AWS Lambda functions through the cljs-lambda plugin for the Serverless Framework. Its main function is to be used on CircleCI 2.0 as a build container.
You can use any of the build tools provided by the projects in the list above, but probably you'd like to use a circle.yml file that looks something like this
version: 2
jobs:
build:
docker:
- image: panenka76/cljs-lambda-build
working_directory: ~/tmp
steps:
- checkout
- run:
name: Install CLJS Lambda plugin
command: npm install --save serverless-cljs-plugin
- deploy:
command: |
if [ "${CIRCLE_BRANCH}" == "develop" ]; then
serverless deploy --stage dev
fi
Content type
Image
Digest
Size
270.6 MB
Last updated
over 9 years ago
docker pull panenka76/cljs-lambda-build