mirror of
https://github.com/serverless/serverless.git
synced 2026-01-25 15:07:39 +00:00
12 lines
331 B
Bash
12 lines
331 B
Bash
#!/bin/bash
|
|
|
|
#install zip on debian OS, since microsoft/dotnet container doesn't have zip by default
|
|
if [ -f /etc/debian_version ]
|
|
then
|
|
apt -qq update
|
|
apt -qq -y install zip
|
|
fi
|
|
|
|
dotnet restore
|
|
dotnet lambda package --configuration release --framework netcoreapp2.1 --output-package bin/release/netcoreapp2.1/deploy-package.zip
|