Skip to content

Deploy with Serverless without installing Node on your system or repo

Notifications You must be signed in to change notification settings

ipanousis/docker-serverless

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

31 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

ipanousis/serverless

Docker image with Serverless Framework + AWS CLI

Use this image to deploy a serverless.yml without installing Serverless or Node or NPM.

Languages available

  • Python 3.6

Docker Usage

docker run --rm -v $(pwd):/opt/workspace -e AWS_ACCESS_KEY_ID=${AWS_ACCESS_KEY_ID} -e AWS_SECRET_ACCESS_KEY=${AWS_SECRET_ACCESS_KEY} -e GIT_TOKEN=${GIT_TOKEN} bighealth/serverless deploy

Docker Compose Usage

docker-compose.yml:

services:
  deploy:
    image: ipanousis/serverless
    volumes:
      - ./:/opt/workspace
    environment:
      AWS_ACCESS_KEY_ID: ${AWS_ACCESS_KEY_ID}
      AWS_SECRET_ACCESS_KEY: ${AWS_SECRET_ACCESS_KEY}

in Shell / script:

docker-compose run deploy

About

Deploy with Serverless without installing Node on your system or repo

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Shell 100.0%