From f680688df24f4803d44c7e321fb7904232d74bf9 Mon Sep 17 00:00:00 2001 From: Harold Wanyama Date: Tue, 29 Aug 2023 16:45:25 +0300 Subject: [PATCH] Added cryptography package in GH Actions deployment Signed-off-by: Harold Wanyama --- cla-backend/deploy-dev.sh | 9 --------- 1 file changed, 9 deletions(-) diff --git a/cla-backend/deploy-dev.sh b/cla-backend/deploy-dev.sh index d35b8f62e..a458078a5 100755 --- a/cla-backend/deploy-dev.sh +++ b/cla-backend/deploy-dev.sh @@ -40,13 +40,4 @@ for i in "${golang_files[@]}"; do done -# Create a directory for Python packages -mkdir -p packages - -# Use Docker to install the dependencies for the Amazon Linux environment (compatible with AWS Lambda) -docker run --rm -v $(pwd)/packages:/packages -w /packages lambci/lambda:build-python3.7 pip install cryptography -t . - -echo "Dependencies installed in the 'packages' directory." - - yarn deploy:dev