mirror of
https://github.com/serverless/serverless.git
synced 2026-01-18 14:58:43 +00:00
15 lines
235 B
Bash
Executable File
15 lines
235 B
Bash
Executable File
#!/bin/bash
|
|
|
|
#build handlers
|
|
dotnet restore
|
|
dotnet publish -c release
|
|
|
|
#install zip
|
|
apt-get -qq update
|
|
apt-get -qq -y install zip
|
|
|
|
#create deployment package
|
|
pushd bin/release/netcoreapp1.0/publish
|
|
zip -r ./deploy-package.zip ./*
|
|
popd
|