I am using bitbucket pipelines to push to AWS elastic beanstalk.
The first step in my pipeline looks like this:
- step:
name: "Build and Test"
script:
- npm install
- npm run build
- zip application.zip -r * .[^.]*
AWS beanstalk wants the entire application to be zipped. However that is adding the node_modules and other unnecessary files to the zip. How would I ignore these before zipping the project?
I was able to do:
- zip application.zip -r * .[^.]* -x *.git* -x bitbucket-pipelines.yml -x node_modules/\* -x README.md
to exclude the stuff I didn't want
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.