mirror of
https://github.com/qodo-ai/pr-agent.git
synced 2025-12-12 02:45:18 +00:00
fix: missing git binary on lambda dockerfile
This commit is contained in:
parent
d250cb46f4
commit
0241fe5c13
1 changed files with 1 additions and 1 deletions
|
|
@ -1,7 +1,7 @@
|
||||||
FROM public.ecr.aws/lambda/python:3.10
|
FROM public.ecr.aws/lambda/python:3.10
|
||||||
|
|
||||||
RUN yum update -y && \
|
RUN yum update -y && \
|
||||||
yum install -y gcc python3-devel && \
|
yum install -y gcc python3-devel git && \
|
||||||
yum clean all
|
yum clean all
|
||||||
|
|
||||||
ADD pyproject.toml requirements.txt .
|
ADD pyproject.toml requirements.txt .
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue