You're on your way to the next level! Join the Kudos program to earn points and save your progress.
Level 1: Seed
25 / 150 points
Next: Root
1 badge earned
Challenges come and go, but your rewards stay with you. Do more to earn more!
What goes around comes around! Share the love by gifting kudos to your peers.
Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!
Join now to unlock these features and more
The Atlassian Community can help you and your team get more value out of Atlassian products and practices.
Does anyone have any examples of a super simple Python 3.7 project built via serverless to AWS...
I have spent days trying everything to multiple fails..
The goal is a simple Python 3.7 lambda function
I can run serverless locally with no problems and push to Lambda.. here is my bitbucket pipelines file.
image: node:11.13.0-alpine
pipelines: branches: master: - step: script: - apk add python3 - npm install -g serverless - serverless config credentials --stage prod --provider aws --key ${AWS_DEV_LAMBDA_KEY} --secret ${AWS_DEV_LAMBDA_SECRET} - serverless deploy --stage prod
I keep getting
" Error: ENOENT: no such file or directory, open '/opt/atlassian/pipelines/agent/build/venv/.Python'"
Hi @Lorenzo Lee ,
if you have created lambda on AWS with The Serverless Framework,
you could use the atlassian/serverless-deploy pipe in the bitbucket-pipelines.yml.
script: - pipe: atlassian/serverless-deploy:0.1.2 variables: AWS_ACCESS_KEY_ID: $AWS_ACCESS_KEY_ID AWS_SECRET_ACCESS_KEY: $AWS_SECRET_ACCESS_KEY
Also, we have a special pipe for AWS Cloud atlassian/aws-lambda-deploy.
Really frustrating, I have spent hours and hours to no avail.. even a simple example what you put produces the same base error
...
Error --------------------------------------------------
Error: ENOENT: no such file or directory, stat '/opt/atlassian/pipelines/agent/build/venv/.Python'
For debugging logs, run again after setting the "SLS_DEBUG=*" environment variable.
I can run ls -la commands to see the venv directory and inside I can also search and see the .Python file but serverless says it cannot find it
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.