From 8cce790574d05c93a1f91e5041ffaa7aef73efa5 Mon Sep 17 00:00:00 2001 From: JingHHe <151711008+JingHHe@users.noreply.github.com> Date: Wed, 22 Nov 2023 17:01:05 +0800 Subject: [PATCH] =?UTF-8?q?chore:=20=F0=9F=A4=96=20use=20requirements.txt?= =?UTF-8?q?=20instead=20of=20pipenv=20requirements=20(#14)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 143a051..f06fffe 100644 --- a/Makefile +++ b/Makefile @@ -27,7 +27,7 @@ setup: ## Set up dependencies deploy: ## Deploy with serverless framework @[ "${stage}" ] || ( echo ">> stage is not set call with make deploy stage="; exit 1 ) rm -rf layer/python/ - pipenv run pip install -r <(pipenv requirements) --target layer/python + pipenv run pip install -r requirements.txt --target layer/python pipenv run npx sls deploy --stage=${stage} --verbose .PHONY: undeploy