mirror of
https://github.com/serverless/serverless.git
synced 2026-01-18 14:58:43 +00:00
12 lines
322 B
Bash
Executable File
12 lines
322 B
Bash
Executable File
#!/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/hello.zip
|