https://github.com/umihico/slsenv
deploy serverless framework from Docker
https://github.com/umihico/slsenv
Last synced: 8 months ago
JSON representation
deploy serverless framework from Docker
- Host: GitHub
- URL: https://github.com/umihico/slsenv
- Owner: umihico
- Created: 2020-08-26T01:40:18.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2020-08-26T01:40:44.000Z (about 5 years ago)
- Last Synced: 2025-01-15T23:15:55.734Z (9 months ago)
- Language: Dockerfile
- Size: 0 Bytes
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# build
```
docker build -t slsenv .
```# deploy
```
docker run -v $(pwd):/app -e AWS_ACCESS_KEY_ID=$(aws configure get aws_access_key_id) -e AWS_SECRET_ACCESS_KEY=$(aws configure get aws_secret_access_key) -e AWS_DEFAULT_REGION=$(aws configure get region) -e SLS_DEBUG="*" slsenv sls deploy
```