Skip to content

Add serverless CLI #25

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,9 @@ RUN (echo 'DPkg::Post-Invoke {"/bin/rm -f /var/cache/apt/archives/*.deb || true"
./get_helm.sh &&\
rm ./get_helm.sh &&\

## Serverless \
npm i serverless -g &&\

## See https://github.com/actions/checkout/issues/956
groupmod -g 1000 runner && usermod -u 1000 runner &&\

Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,5 +13,6 @@ Also includes the following tools:
* TerraForm
* AWS CLI (v2)
* Helm
* Serverless

Unlocks node v20 that is already available in the image
4 changes: 4 additions & 0 deletions test/test_serverless.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
import pytest

def test_helm(host):
assert 'Serverless ϟ Framework 4.' in host.run('serverless -v').stdout
Loading