-
Notifications
You must be signed in to change notification settings - Fork 6
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Lambdas won't compile due to chmod in makedomainenv #7
Comments
Our |
We get a million "permission denied" errors when trying to compile a lambda. The cause is all of the files being owner unreadable. We spent a while trying to figure out why all of the files in the build environment had permission ----rwxrwx, and thus unreadable (and unexecutable). The simple fix was changing the chmod line to not strip owner access. |
Ok looks like the |
added subnet-f at the end of the subnet list.
The chmod 077 lines prevent lambda from being build on the lambda build server. This was introduced with a7ef013.
Our solution was to remove the "chmod -R 077 *" lines, but I'm not sure of what context this was added. Perhaps 777 would be better?
The text was updated successfully, but these errors were encountered: