git-lambda-layer
git-lambda-layer copied to clipboard
A layer for AWS Lambda that allows your functions to use `git` and `ssh` binaries
Hi! I am trying to run git with this layer in a SAM lambda build. Template snippet: ``` LambdaFunction: Type: AWS::Serverless::Function Properties: CodeUri: src/ Handler: app.lambda_handler Runtime: python3.7 Layers: -...
Hi @mhart The layer is currently not supported on arm64 AWS Lambdas. On running it, the following error is displayed: ```/bin/sh: /opt/bin/git: cannot execute binary file``` Can you please provide...
I love this layer. However, due to security concerns, we cannot use your layer for our production environment; similarly, we cannot simply download your layer and reupload it to a...
I realize this probably out of scope We have a Python lambda that runs from the AWS lambda container FROM public.ecr.aws/lambda/python:3.8 **We are running into the issue with git clone...
Hi, after importing this layer, how should I reference git command in python lambda function. any suggestion/help is greatly appreciated. thank you !
Resolves lambci/git-lambda-layer#22 This adds the appropriate `git-lfs` RPM repo and validates its signature, then installs it with the `yum install` command. We have to manually move the `git-lfs` binary (which...
Hello! I'm trying to use your project in my lambda, but due to restriction of my company's infrastructure, I need to deploy the git layer to our own s3. I...
I use PythonGit to clone private repo with ssh and private key, (ref to https://github.com/gitpython-developers/GitPython/issues/725) and it told errors below: ssh: /lib64/libc.so.6: version `GLIBC_2.26' not found (required by ssh) ssh:...
Hi , how can i edit the layer to add the aws cli exectuables available inside lambda function ?
Hi, I've noticed there is a new [security vulnerability](https://github.com/git/git/security/advisories/GHSA-8prw-h3cq-mghm) in the last few versions of GIT and there is a patch already available in version v2.30.2. More info from GitHub:...